branch: elpa/multiple-cursors
commit d184f353ef67e0b90767c75f76aa4bc7bd995b05
Author: Bailey Ling <[email protected]>
Commit: Bailey Ling <[email protected]>
Add company-mode to the list of unsupported minor modes.
---
multiple-cursors-core.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index f8d5409..974b1b8 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -428,7 +428,7 @@ So you can paste it in later with `yank-rectangle'."
(unless (mc--all-equal entries)
(setq killed-rectangle entries))))
-(defvar mc/unsupported-minor-modes '(auto-complete-mode flyspell-mode
jedi-mode)
+(defvar mc/unsupported-minor-modes '(company-mode auto-complete-mode
flyspell-mode jedi-mode)
"List of minor-modes that does not play well with multiple-cursors.
They are temporarily disabled when multiple-cursors are active.")