branch: elpa/multiple-cursors
commit 759391e04d5aca5a6888fc53c1fa10188bdcc113
Author: Magnar Sveen <[email protected]>
Commit: Magnar Sveen <[email protected]>
Don't message about skipping known run-once commands
---
multiple-cursors-core.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index af9f2cc..6ddbd01 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -128,7 +128,8 @@ cursors."
(if (memq this-original-command mc--unsupported-cmds)
(message "%S is not supported with multiple cursors"
this-original-command)
(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))))
(defun mc/remove-fake-cursors ()