branch: externals/devdocs commit a533d5a42582c209d866107423b3145b440f251f Author: Augusto Stoffel <arstof...@gmail.com> Commit: Augusto Stoffel <arstof...@gmail.com>
Change keybinding of devdocs-lookup in devdocs-mode The best Info analogue is `Info-index`, bound to `i`. Closes #2. --- devdocs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devdocs.el b/devdocs.el index c7928c9..56e9182 100644 --- a/devdocs.el +++ b/devdocs.el @@ -248,7 +248,7 @@ with the order of appearance in the text." (let ((map devdocs-mode-map)) (define-key map [tab] 'forward-button) (define-key map [backtab] 'backward-button) - (define-key map "g" 'devdocs-lookup) + (define-key map "i" 'devdocs-lookup) (define-key map "p" 'devdocs-previous-entry) (define-key map "n" 'devdocs-next-entry) (define-key map "l" 'devdocs-go-back)