mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-14 05:13:05 +00:00
Don't message about skipping known run-once commands
This commit is contained in:
parent
b60cbc3f56
commit
759391e04d
@ -128,7 +128,8 @@ cursors."
|
|||||||
(if (memq this-original-command mc--unsupported-cmds)
|
(if (memq this-original-command mc--unsupported-cmds)
|
||||||
(message "%S is not supported with multiple cursors" this-original-command)
|
(message "%S is not supported with multiple cursors" this-original-command)
|
||||||
(if (not (memq this-original-command mc--cmds))
|
(if (not (memq this-original-command mc--cmds))
|
||||||
(message "Skipping %S" this-original-command)
|
(when (not (memq this-original-command mc--cmds-run-once))
|
||||||
|
(message "Skipping %S" this-original-command))
|
||||||
(mc/execute-command-for-all-fake-cursors this-original-command))))
|
(mc/execute-command-for-all-fake-cursors this-original-command))))
|
||||||
|
|
||||||
(defun mc/remove-fake-cursors ()
|
(defun mc/remove-fake-cursors ()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user