diff options
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | helpful.el | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 839c4cb..d8d8afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ Fixed a crash on keymaps where keys are bound to anonymous functions. Improved performance (PR by @nickdrozd). +It's now possible to move between buttons in the Helpful buffer with +`n` and `p`. + # v0.11 Further work on syntax highlighting performance for large code @@ -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 |
