Refactor helm config; fix remaps; move personal binds
This commit is contained in:
parent
1a24d5421e
commit
0bc182ef1a
2 changed files with 49 additions and 41 deletions
|
@ -490,6 +490,32 @@
|
|||
:n "S" #'gist-unstar
|
||||
:n "y" #'gist-print-current-url)
|
||||
|
||||
;; helm
|
||||
(:after helm
|
||||
(:map helm-map
|
||||
"ESC" nil
|
||||
"C-S-n" #'helm-next-source
|
||||
"C-S-p" #'helm-previous-source
|
||||
"C-u" #'helm-delete-minibuffer-contents
|
||||
"C-w" #'backward-kill-word
|
||||
"C-r" #'evil-paste-from-register ; Evil registers in helm! Glorious!
|
||||
"C-b" #'backward-word
|
||||
[left] #'backward-char
|
||||
[right] #'forward-char
|
||||
[escape] #'helm-keyboard-quit
|
||||
[tab] #'helm-execute-persistent-action)
|
||||
|
||||
(:after helm-files
|
||||
(:map helm-generic-files-map
|
||||
:e "ESC" #'helm-keyboard-quit)
|
||||
(:map helm-find-files-map
|
||||
"C-w" #'helm-find-files-up-one-level
|
||||
"TAB" #'helm-execute-persistent-action))
|
||||
|
||||
(:after helm-ag
|
||||
(:map helm-ag-map
|
||||
"<backtab>" #'helm-ag-edit)))
|
||||
|
||||
;; hl-todo
|
||||
:m "]t" #'hl-todo-next
|
||||
:m "[t" #'hl-todo-previous
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue