Remove SPC h {D,h} keybinds to reduce accidents

`SPC h h` and `SPC h D` are too easy to hit by accident.
This commit is contained in:
Henrik Lissner 2019-10-05 12:17:14 -04:00
parent 297728bf74
commit a3b34a6806
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -264,7 +264,6 @@
(define-key! help-map (define-key! help-map
;; new keybinds ;; new keybinds
"'" #'describe-char "'" #'describe-char
"D" #'doom/help
"E" #'doom/sandbox "E" #'doom/sandbox
"M" #'doom/describe-active-minor-mode "M" #'doom/describe-active-minor-mode
"O" #'+lookup/online "O" #'+lookup/online
@ -314,10 +313,10 @@
;; replaces `Info-got-emacs-command-node' b/c redundant w/ `Info-goto-node' ;; replaces `Info-got-emacs-command-node' b/c redundant w/ `Info-goto-node'
"F" #'describe-face "F" #'describe-face
;; replaces `view-hello-file' b/c annoying ;; replaces `view-hello-file' b/c annoying
"h" #'doom/help "h" nil
;; replaces `view-emacs-news' b/c it's on C-n too ;; replaces `view-emacs-news' b/c it's on C-n too
"n" #'doom/help-news "n" #'doom/help-news
;; replaces `finder-by-keyword' ;; replaces `finder-by-keyword' b/c not usefull
"p" #'doom/help-packages "p" #'doom/help-packages
;; replaces `describe-package' b/c redundant w/ `doom/describe-package' ;; replaces `describe-package' b/c redundant w/ `doom/describe-package'
"P" #'find-library) "P" #'find-library)