More help-map keys and remaps

- Move profiler from 't' to 'T' (as not to override
  `help-with-tutorial', esp for non-evil users)
- Replace C-c (describe-copying) with describe-coding-system
- Bind doom/describe-symbol to 'h'
- Bind `describe-key-briefly' to 'C-k'
This commit is contained in:
Henrik Lissner 2019-03-13 01:51:53 -04:00
parent 5e5ae456bb
commit 5c7da455f8
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -96,11 +96,13 @@
"a" #'apropos ; replaces `apropos-command' "a" #'apropos ; replaces `apropos-command'
"A" #'doom/describe-autodefs "A" #'doom/describe-autodefs
"B" #'doom/open-bug-report "B" #'doom/open-bug-report
"C-c" #'describe-coding-system ; replaces `describe-copying' b/c not useful
"d" #'doom/describe-module ; replaces `apropos-documentation' b/c `apropos' covers this "d" #'doom/describe-module ; replaces `apropos-documentation' b/c `apropos' covers this
"D" #'doom/open-manual "D" #'doom/open-manual
"E" #'doom/open-vanilla-sandbox "E" #'doom/open-vanilla-sandbox
"F" #'describe-face ; replaces `Info-got-emacs-command-node' b/c redundant w/ helpful "F" #'describe-face ; replaces `Info-got-emacs-command-node' b/c redundant w/ `Info-goto-node'
"h" #'helpful-at-point ; replaces `view-hello-file' b/c annoying "h" #'doom/describe-symbol ; replaces `view-hello-file' b/c annoying
"C-k" #'describe-key-briefly
"L" #'global-command-log-mode ; replaces `describe-language-environment' b/c remapped to C-l "L" #'global-command-log-mode ; replaces `describe-language-environment' b/c remapped to C-l
"C-l" #'describe-language-environment "C-l" #'describe-language-environment
"M" #'doom/describe-active-minor-mode "M" #'doom/describe-active-minor-mode
@ -109,7 +111,6 @@
"O" #'+lookup/online "O" #'+lookup/online
"p" #'doom/describe-package ; replaces `finder-by-keyword' "p" #'doom/describe-package ; replaces `finder-by-keyword'
"P" #'find-library ; replaces `describe-package' b/c redundant w/ `doom/describe-package' "P" #'find-library ; replaces `describe-package' b/c redundant w/ `doom/describe-package'
"t" #'doom/toggle-profiler ; replaces `help-with-tutorial' b/c not useful for evil users
"r" nil ; replaces `info-emacs-manual' b/c it's on C-m now "r" nil ; replaces `info-emacs-manual' b/c it's on C-m now
(:prefix "r" (:prefix "r"
"r" #'doom/reload "r" #'doom/reload
@ -117,6 +118,7 @@
"p" #'doom/reload-packages "p" #'doom/reload-packages
"f" #'doom/reload-font "f" #'doom/reload-font
"P" #'doom/reload-project) "P" #'doom/reload-project)
"T" #'doom/toggle-profiler
"V" #'set-variable "V" #'set-variable
"C-v" #'doom/version "C-v" #'doom/version
"W" #'+default/man-or-woman) "W" #'+default/man-or-woman)