Evil: Rebind "C-;" from iedit to multiedit

master
Pierre Neidhardt 2018-03-19 16:14:38 +05:30
parent 98b0b0acdb
commit 32127419c8
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@
;;; Multiedit
(when (require 'evil-multiedit nil t)
;; iedit exits as soon as an Evil operator is pressed.
;; Replace iedit's default binding with multiedit to avoid confusions.
(global-set-key (kbd "C-;") 'evil-multiedit-match-all)
;; REVIEW: Some bindings are missing:
;; See https://github.com/hlissner/evil-multiedit/issues/20.
(evil-multiedit-default-keybinds))