Fix SPC TAB leader prefix not being recognized

Due to a TAB => [tab] remap later in config/default.
This commit is contained in:
Henrik Lissner 2018-06-15 16:16:40 +02:00
parent 11b5a7116f
commit d588332aa0
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -419,9 +419,7 @@
[delete] #'+snippets/delete-forward-char-or-field) [delete] #'+snippets/delete-forward-char-or-field)
(:map yas-minor-mode-map (:map yas-minor-mode-map
:ig [tab] yas-maybe-expand :ig [tab] yas-maybe-expand
:v [tab] #'yas-insert-snippet :v [tab] #'yas-insert-snippet))
:ig "TAB" yas-maybe-expand
:v "TAB" #'yas-insert-snippet))
;; --- Major mode bindings -------------------------- ;; --- Major mode bindings --------------------------
@ -509,8 +507,8 @@
:desc "Symbols across buffers" :nv "I" #'imenu-anywhere :desc "Symbols across buffers" :nv "I" #'imenu-anywhere
:desc "Online providers" :nv "o" #'+lookup/online-select) :desc "Online providers" :nv "o" #'+lookup/online-select)
(:desc "workspace" :prefix "TAB" (:desc "workspace" :prefix [tab]
:desc "Display tab bar" :n "TAB" #'+workspace/display :desc "Display tab bar" :n [tab] #'+workspace/display
:desc "New workspace" :n "n" #'+workspace/new :desc "New workspace" :n "n" #'+workspace/new
:desc "Load workspace from file" :n "l" #'+workspace/load :desc "Load workspace from file" :n "l" #'+workspace/load
:desc "Load last session" :n "L" (λ! (+workspace/load-session)) :desc "Load last session" :n "L" (λ! (+workspace/load-session))