helm: split selected window, use "s-c" as keymap prefix
This commit is contained in:
8
init.el
8
init.el
@ -90,8 +90,10 @@
|
|||||||
|
|
||||||
(use-package helm
|
(use-package helm
|
||||||
:init
|
:init
|
||||||
(setq helm-split-window-default-side 'other)
|
(setq helm-split-window-default-side 'other
|
||||||
(require 'helm-config) ; required to setup "C-x c keymap"
|
helm-split-window-inside-p t
|
||||||
|
helm-command-prefix-key "s-c")
|
||||||
|
(require 'helm-config) ; required to setup "s-c" keymap
|
||||||
(helm-mode 1)
|
(helm-mode 1)
|
||||||
(helm-autoresize-mode 1)
|
(helm-autoresize-mode 1)
|
||||||
:bind
|
:bind
|
||||||
@ -108,7 +110,7 @@
|
|||||||
("C-c h g" . helm-info-gnus)
|
("C-c h g" . helm-info-gnus)
|
||||||
("C-c R" . helm-register)
|
("C-c R" . helm-register)
|
||||||
("s-p" . helm-run-external-command)
|
("s-p" . helm-run-external-command)
|
||||||
;; More key bindings in "C-x c" keymap
|
;; More key bindings in "s-c" keymap
|
||||||
:map helm-find-files-map
|
:map helm-find-files-map
|
||||||
("<backtab>" . helm-select-action)
|
("<backtab>" . helm-select-action)
|
||||||
("C-i" . helm-execute-persistent-action)))
|
("C-i" . helm-execute-persistent-action)))
|
||||||
|
Reference in New Issue
Block a user