Skip to content

Instantly share code, notes, and snippets.

Created July 10, 2015 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/dbdda3f782b14fbcec4a to your computer and use it in GitHub Desktop.
Save anonymous/dbdda3f782b14fbcec4a to your computer and use it in GitHub Desktop.
:preface
(define-prefix-command 'my-helm-map)
(global-set-key (kbd "C-c h") 'my-helm-map)
:bind (
("C-c h" . helm-command-prefix)
("C-c h /" . helm-find)
("C-c h i" . helm-semantic-or-imenu)
("C-c h l" . helm-locate)
("C-c h m" . helm-man-woman)
("C-c h o" . helm-occur)
("C-x C-f" . helm-find-files)
("C-x b" . helm-mini)
("M-x" . helm-M-x)
("M-y" . helm-show-kill-ring)
("C-h SPC" . helm-all-mark-rings)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment