From 759391e04d5aca5a6888fc53c1fa10188bdcc113 Mon Sep 17 00:00:00 2001 From: Magnar Sveen Date: Mon, 2 Jul 2012 08:13:51 +0200 Subject: [PATCH] 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 ()