diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-30 17:20:26 +0000 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-30 17:20:26 +0000 |
| commit | 62aa8bd5befca1a99f30c91df700d8ac74799612 (patch) | |
| tree | 773cb19ec48a9f9582136561798feca098aad23f | |
| parent | 02d3573fa23acc17ff13e82d81a4c984015781bd (diff) | |
Expand recommended keybindings
| -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 |
