diff --git a/mc-mark-more.el b/mc-mark-more.el index a0f134f..883fb1e 100644 --- a/mc-mark-more.el +++ b/mc-mark-more.el @@ -137,6 +137,18 @@ With zero ARG, skip the last one and mark next." (multiple-cursors-mode 1) (multiple-cursors-mode 0))) +;;;###autoload +(defun mc/unmark-next-like-this (arg) + "Deselect next part of the buffer matching the currently active region." + (interactive) + (mc/mark-next-like-this -1)) + +;;;###autoload +(defun mc/unmark-previous-like-this (arg) + "Deselect prev part of the buffer matching the currently active region." + (interactive) + (mc/mark-previous-like-this -1)) + ;;;###autoload (defun mc/mark-all-like-this () "Find and mark all the parts of the buffer matching the currently active region"