emacs: reverse symex.el "up" and "down"

This commit is contained in:
Jez Cope 2021-08-01 12:22:51 +01:00
parent 1337086b94
commit 76370fd129
1 changed files with 8 additions and 0 deletions

View File

@ -653,6 +653,14 @@ See also [[id:18709859-c3db-4d0e-a4a0-e797b58a2e07][Capture templates]]
(use-package! symex
:custom
(symex-modal-backend 'evil)
:init
(setq symex--user-evil-keyspec
'(("j" . symex-go-up)
("k" . symex-go-down)
("C-j" . symex-climb-branch)
("C-k" . symex-descend-branch)
("M-j" . symex-goto-highest)
("M-k" . symex-goto-lowest)))
:config
(symex-initialize)
:bind (:map evil-normal-state-map