Fix helm keybinds
This commit is contained in:
parent
5483a29176
commit
926f0fb77d
1 changed files with 6 additions and 5 deletions
|
@ -32,18 +32,19 @@
|
||||||
(mapc (lambda (r) (add-to-list 'helm-boring-file-regexp-list r))
|
(mapc (lambda (r) (add-to-list 'helm-boring-file-regexp-list r))
|
||||||
(list "\\.projects$" "\\.DS_Store$" "\\.cask"))
|
(list "\\.projects$" "\\.DS_Store$" "\\.cask"))
|
||||||
|
|
||||||
(map! (:map (helm-generic-files-map helm-projectile-find-file-map)
|
(map! (:map (helm-map helm-generic-files-map helm-find-files-map helm-swoop-map helm-projectile-find-file-map)
|
||||||
"ESC" 'helm-keyboard-quit)
|
"ESC" nil
|
||||||
(:map (helm-map helm-generic-files-map helm-find-files-map helm-swoop-map helm-projectile-find-file-map)
|
|
||||||
"C-w" 'backward-kill-word
|
|
||||||
"C-r" 'evil-paste-from-register ; Evil registers in helm! Glorious!
|
|
||||||
"/" nil
|
"/" nil
|
||||||
"M-v" 'clipboard-yank
|
"M-v" 'clipboard-yank
|
||||||
|
"C-w" 'backward-kill-word
|
||||||
|
"C-r" 'evil-paste-from-register ; Evil registers in helm! Glorious!
|
||||||
"<left>" 'backward-char
|
"<left>" 'backward-char
|
||||||
"<right>" 'forward-char
|
"<right>" 'forward-char
|
||||||
"<escape>" 'helm-keyboard-quit
|
"<escape>" 'helm-keyboard-quit
|
||||||
[escape] 'helm-keyboard-quit
|
[escape] 'helm-keyboard-quit
|
||||||
"<tab>" 'helm-execute-persistent-action)
|
"<tab>" 'helm-execute-persistent-action)
|
||||||
|
(:map (helm-generic-files-map helm-projectile-find-file-map)
|
||||||
|
"ESC" 'helm-keyboard-quit)
|
||||||
(:map helm-find-files-map
|
(:map helm-find-files-map
|
||||||
"C-w" 'helm-find-files-up-one-level
|
"C-w" 'helm-find-files-up-one-level
|
||||||
"TAB" 'helm-execute-persistent-action)
|
"TAB" 'helm-execute-persistent-action)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue