editor/evil: evil-want-C-i-jump = t in daemon
Since we can't predict what kind of frames the user will open, we assume they're graphical. Terminal+daemon users will have to undo this in `~/.emacs.d/init.el`.
This commit is contained in:
parent
e5d566ea2a
commit
00f88a509f
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ line with a linewise comment.")
|
|||
|
||||
;; Set these defaults before `evil'; use `defvar' so they can be changed prior
|
||||
;; to loading.
|
||||
(defvar evil-want-C-i-jump (display-graphic-p))
|
||||
(defvar evil-want-C-i-jump (or (daemonp) (display-graphic-p)))
|
||||
(defvar evil-want-C-u-scroll t)
|
||||
(defvar evil-want-C-w-scroll t)
|
||||
(defvar evil-want-Y-yank-to-eol t)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue