ui/treemacs: make o {v,s} consistent w/ C-w {v,s} #1875

This commit is contained in:
Henrik Lissner 2019-10-10 16:57:26 -04:00
parent 0fe576d104
commit 44eb11c028
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -28,12 +28,16 @@
(define-key! evil-treemacs-state-map
[return] #'treemacs-RET-action
[tab] #'treemacs-TAB-action
"TAB" #'treemacs-TAB-action))
"TAB" #'treemacs-TAB-action
;; To be consistent with C-w {v,s}:
"o v" #'treemacs-visit-node-horizontal-split
"o s" #'treemacs-visit-node-vertical-split))
(use-package! treemacs-projectile
:after treemacs)
(use-package! treemacs-magit
:when (featurep! :tools magit)
:after treemacs magit)