diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2018-07-08 21:54:55 +0100 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2018-07-08 21:54:55 +0100 |
| commit | 5f3fb4752de3868e688ff2046790bda569bb6e23 (patch) | |
| tree | 57deb9cc695bd0b6c0ee11e7e9c839416ea7614e /helpful.el | |
| parent | ffe44784e833d3376dd460bb73073bd9bc68031d (diff) | |
Add n and p as movement keybindings0.12
We might want to use TAB in future for other things, perhaps
expanding/collapsing headings.
Diffstat (limited to 'helpful.el')
| -rw-r--r-- | helpful.el | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2193,5 +2193,8 @@ See also `helpful-max-buffers'." (define-key helpful-mode-map (kbd "TAB") #'forward-button) (define-key helpful-mode-map (kbd "<backtab>") #'backward-button) +(define-key helpful-mode-map (kbd "n") #'forward-button) +(define-key helpful-mode-map (kbd "p") #'backward-button) + (provide 'helpful) ;;; helpful.el ends here |
