mirror of
https://github.com/vale981/boon
synced 2025-03-06 01:51:38 -05:00
Fix function name typo
This commit is contained in:
parent
f6edf01a9f
commit
e948259fd2
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ NOTE: Do not run for every cursor."
|
||||||
(interactive)
|
(interactive)
|
||||||
(if multiple-cursors-mode
|
(if multiple-cursors-mode
|
||||||
;; attempt to deactivate mc without deleting the cursors
|
;; attempt to deactivate mc without deleting the cursors
|
||||||
(let ((cursors (mapcar (lambda (o) (cons (ovelay-get o 'point) (ovelay-get o 'mark)))(mc/all-fake-cursors))))
|
(let ((cursors (mapcar (lambda (o) (cons (overlay-get o 'point) (overlay-get o 'mark)))(mc/all-fake-cursors))))
|
||||||
;; does not work because deactivating mc destroys the overlays
|
;; does not work because deactivating mc destroys the overlays
|
||||||
(multiple-cursors-mode 0)
|
(multiple-cursors-mode 0)
|
||||||
(dolist (p (cdr cursors))
|
(dolist (p (cdr cursors))
|
||||||
|
|
Loading…
Add table
Reference in a new issue