branch: elpa/multiple-cursors
commit d26cecd53aa03dd4db12d126dd3f37c65af2aaf0
Author: bb2020 <[email protected]>
Commit: bb2020 <[email protected]>
added always-run-for-all
---
multiple-cursors-core.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index b48e88c..650ce3c 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -404,10 +404,10 @@ the original cursor, to inform about the lack of support."
(when (and original-command
(not (memq original-command
mc--default-cmds-to-run-once))
(not (memq original-command mc/cmds-to-run-once))
- (or (memq original-command
mc--default-cmds-to-run-for-all)
+ (or mc/always-run-for-all
+ (memq original-command
mc--default-cmds-to-run-for-all)
(memq original-command mc/cmds-to-run-for-all)
- (or mc/always-run-for-all
- (mc/prompt-for-inclusion-in-whitelist
original-command))))
+ (mc/prompt-for-inclusion-in-whitelist
original-command)))
(mc/execute-command-for-all-fake-cursors
original-command))))))))))
(defun mc/remove-fake-cursors ()