diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-23 02:15:14 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-23 02:15:14 +0100 |
commit | 2d9404e08295496c4b3cb77805eaf1911c508a57 (patch) | |
tree | c92613908241832e8dd4eb6ff9adb6171a493895 | |
parent | 632a069eed54f3912c799b5497ece78d4e8a42d0 (diff) | |
download | geiser-2d9404e08295496c4b3cb77805eaf1911c508a57.tar.gz geiser-2d9404e08295496c4b3cb77805eaf1911c508a57.tar.bz2 |
Lookup is a name, look up, a verb
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | doc/cheat.texi | 4 | ||||
-rw-r--r-- | doc/parens.texi | 2 | ||||
-rw-r--r-- | elisp/geiser-doc.el | 4 | ||||
-rw-r--r-- | elisp/geiser-mode.el | 2 |
5 files changed, 7 insertions, 6 deletions
@@ -126,6 +126,7 @@ | C-c C-k | Compile and load current file | |---------------------+-------------------------------------------------| | C-c C-d d | See documentation for identifier at point | + | C-c C-d i | Look up manual for identifier at point | | C-c C-d m | See a list of a module's exported identifiers | | C-c C-d a | Toggle autodoc mode | |---------------------+-------------------------------------------------| diff --git a/doc/cheat.texi b/doc/cheat.texi index f6e1924..3748f58 100644 --- a/doc/cheat.texi +++ b/doc/cheat.texi @@ -138,8 +138,8 @@ @tab geiser-doc-symbol-at-point @tab See documentation for symbol at point @item C-c C-d C-i -@tab geiser-doc-lookup-manual -@tab Lookup manual for symbol at point +@tab geiser-doc-look-up-manual +@tab Look up manual for symbol at point @item C-c C-d C-m @tab geiser-repl--doc-module @tab See documentation for module diff --git a/doc/parens.texi b/doc/parens.texi index c4aa228..a902b27 100644 --- a/doc/parens.texi +++ b/doc/parens.texi @@ -319,7 +319,7 @@ be performed in the texinfo manual. @cindex opening manual pages You can also jump directly to the manual page for the symbol at point -with the command @code{geiser-doc-lookup-manual}, bound to @kbd{C-c C-d +with the command @code{geiser-doc-look-up-manual}, bound to @kbd{C-c C-d i}. See also our @xref{Documentation browser,,cheat-sheet} for a list of diff --git a/elisp/geiser-doc.el b/elisp/geiser-doc.el index 67e46dd..f1f0aa0 100644 --- a/elisp/geiser-doc.el +++ b/elisp/geiser-doc.el @@ -284,8 +284,8 @@ With prefix argument, ask for symbol (with completion)." (symbol-at-point))))) (when symbol (geiser-doc-symbol symbol)))) -(defun geiser-doc-lookup-manual (&optional arg) - "Lookup manual for symbol at point. +(defun geiser-doc-look-up-manual (&optional arg) + "Look up manual for symbol at point. With prefix argument, ask for the lookup symbol (with completion)." (interactive "P") (unless (geiser-doc--manual-available-p) diff --git a/elisp/geiser-mode.el b/elisp/geiser-mode.el index f755540..9ef568e 100644 --- a/elisp/geiser-mode.el +++ b/elisp/geiser-mode.el @@ -283,7 +283,7 @@ interacting with the Geiser REPL is at your disposal. geiser-doc-symbol-at-point :enable (symbol-at-point)) ("Module documentation" ("\C-c\C-d\C-m" "\C-c\C-dm") geiser-doc-module) ("Symbol manual lookup" ("\C-c\C-d\C-i" "\C-c\C-di") - geiser-doc-lookup-manual :enable (geiser-doc--manual-available-p)) + geiser-doc-look-up-manual :enable (geiser-doc--manual-available-p)) (mode "Autodoc mode" ("\C-c\C-d\C-a" "\C-c\C-da") geiser-autodoc-mode) -- ("Compile buffer" "\C-c\C-k" geiser-compile-current-buffer) |