evil: Bind evil-jump-forward for GUI
Bind to <C-i> so that evil-jump-forward works in the GUI and we don't rebind TAB in the terminal. Bind <C-i> for the evil-jumper package too
This commit is contained in:
parent
82cb1fe780
commit
e519dad118
1 changed files with 3 additions and 0 deletions
|
@ -229,6 +229,9 @@
|
|||
(progn
|
||||
;; bind function keys
|
||||
|
||||
;; bind evil-jump-forward for GUI only.
|
||||
(define-key evil-motion-state-map [C-i] 'evil-jump-forward)
|
||||
|
||||
;; Make the current definition and/or comment visible.
|
||||
(define-key evil-normal-state-map "zf" 'reposition-window)
|
||||
;; toggle maximize buffer
|
||||
|
|
Reference in a new issue