diff options
| -rw-r--r-- | README.md | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -30,11 +30,26 @@ so: (global-set-key (kbd "C-h k") #'helpful-key) ``` -I also recommend you configure `helpful-at-point` to a convenient -keybinding: +I also recommend the following keybindings to get the most out of +helpful: ``` emacs-lisp -(global-set-key (kbd "C-c C-.") #'helpful-at-point) +;; Lookup the current symbol at point. C-c C-d is a common keybinding +;; for this in lisp modes. +(global-set-key (kbd "C-c C-d") #'helpful-at-point) + +;; Look up *F*unctions (excludes macros). +;; +;; By default, C-h F is bound to `Info-goto-emacs-command-node'. Helpful +;; already links to the manual, if a function is referenced there. +(global-set-key (kbd "C-h F") #'helpful-function) + +;; Look up *C*ommands. +;; +;; By default, C-h C is bound to describe `describe-coding-system'. I +;; don't find this very useful, but it's frequently useful to only +;; look at interactive functions. +(global-set-key (kbd "C-h C") #'helpful-command) ``` ## Features |
