mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
disable multiple-cursors-mode
This commit is contained in:
parent
faf42e39e7
commit
ee3083d96d
1 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
|||
(require 'jit-lock)
|
||||
(require 'display-line-numbers nil t)
|
||||
(require 'undo-tree nil t)
|
||||
(require 'multiple-cursors nil t)
|
||||
|
||||
(declare-function ein:get-notebook "ein-notebook")
|
||||
(declare-function ein:notebook-mode "ein-notebook")
|
||||
|
@ -270,6 +271,9 @@ TYPE can be 'body, nil."
|
|||
(undo-tree-mode -1)))
|
||||
(when visual-line-mode
|
||||
(visual-line-mode -1))
|
||||
(when (ein:eval-if-bound 'multiple-cursors-mode)
|
||||
(when (fboundp 'multiple-cursors-mode)
|
||||
(multiple-cursors-mode -1)))
|
||||
(if (eq type 'host)
|
||||
(setq syntax-propertize-function nil)
|
||||
(aif pm--syntax-propertize-function-original
|
||||
|
|
Loading…
Add table
Reference in a new issue