diff --git a/mc-mark-more.el b/mc-mark-more.el index 5270950..56e4852 100644 --- a/mc-mark-more.el +++ b/mc-mark-more.el @@ -321,7 +321,7 @@ With prefix, it behaves the same as original `mc/mark-all-like-this'" (mc/mark-all-like-this) (if (and (mc--no-region-and-in-sgmlish-mode) (mc--on-tag-name-p)) - (mc/mark-sgml-tags) + (mc/mark-sgml-tag-pair) (let ((before (mc/num-cursors))) (unless (eq last-command 'mc/mark-all-like-this-dwim) (setq mc--restrict-mark-all-to-symbols nil)) @@ -400,7 +400,7 @@ With prefix, it behaves the same as original `mc/mark-all-like-this'" (>= (point) beg) (<= (point) end)))) -(defun mc/mark-sgml-tags () +(defun mc/mark-sgml-tag-pair () "Mark the tag we're in and its pair for renaming." (interactive) (when (not (mc--inside-tag-p)) diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el index 549dfb9..ea20b6b 100644 --- a/multiple-cursors-core.el +++ b/multiple-cursors-core.el @@ -549,7 +549,7 @@ for running commands with multiple cursors.") mc/mark-all-words-like-this-in-defun mc/mark-all-symbols-like-this-in-defun mc/mark-all-like-this-dwim - mc/mark-sgml-tags + mc/mark-sgml-tag-pair mc/cycle-forward mc/cycle-backward rrm/switch-to-multiple-cursors