diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-10-16 09:10:14 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-10-16 09:10:14 +0300 |
commit | 067361f3a29ae23ff609a4308dd025fe783b9723 (patch) | |
tree | 62d3ff104b493c60923c2b00784dc57dcb7281cf /doc/emacs | |
parent | fdb6f7cf26fad194e8b5c6a599db94fa79976591 (diff) | |
download | emacs-067361f3a29ae23ff609a4308dd025fe783b9723.tar.gz emacs-067361f3a29ae23ff609a4308dd025fe783b9723.tar.bz2 emacs-067361f3a29ae23ff609a4308dd025fe783b9723.zip |
; Improve documentation of 'C-M-i'
* doc/emacs/programs.texi (Symbol Completion): Remove redundant
text, rephrase, and improve indexing and markup.
Diffstat (limited to 'doc/emacs')
-rw-r--r-- | doc/emacs/programs.texi | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi index ef9b3885e71..a0c044b920f 100644 --- a/doc/emacs/programs.texi +++ b/doc/emacs/programs.texi @@ -1406,27 +1406,38 @@ nor comments). The default value is @code{code}. Completion is normally done in the minibuffer (@pxref{Completion}), but you can also complete symbol names in ordinary Emacs buffers. +@cindex tags-based completion @kindex M-TAB @kindex C-M-i - In programming language modes, type @kbd{C-M-i} or @kbd{M-@key{TAB}} -to complete the partial symbol before point. On graphical displays, -the @kbd{M-@key{TAB}} key is usually reserved by the window manager -for switching graphical windows, so you should type @kbd{C-M-i} or -@kbd{@key{ESC} @key{TAB}} instead. - -@cindex tags-based completion @findex completion-at-point@r{, in programming language modes} @cindex Lisp symbol completion @cindex completion (Lisp symbols) In most programming language modes, @kbd{C-M-i} (or -@kbd{M-@key{TAB}}) invokes the command @code{completion-at-point}, -which generates its completion list in a flexible way. If Semantic -mode is enabled, it tries to use the Semantic parser data for -completion (@pxref{Semantic}). If Semantic mode is not enabled or -fails at performing completion, it tries to complete using the -selected tags table (@pxref{Tags Tables}). If in Emacs Lisp mode, it -performs completion using the function, variable, or property names -defined in the current Emacs session. +@kbd{M-@key{TAB}}@footnote{ +On graphical displays, the @kbd{M-@key{TAB}} key is usually reserved +by the window manager for switching graphical windows, so you should +type @kbd{C-M-i} or @kbd{@key{ESC} @key{TAB}} instead. +}) invokes the command @code{completion-at-point}, which generates the +list of possible completions for the symbol at point. This command +uses the available support facilities to come up with the completion +candidates: + +@itemize @bullet +@item +If Semantic mode is enabled (@pxref{Semantic}), the command tries to +use the Semantic parser data for completion. + +@item +If Semantic mode is not enabled or fails at performing completion, the +command tries to complete using the selected tags table (@pxref{Tags +Tables}); you need to visit the tags table with @w{@kbd{M-x +visit-tags-table}} for that to work. + +@item +In Emacs Lisp mode, the command performs completion using the +function, variable, or property names defined in the current Emacs +session. +@end itemize In all other respects, in-buffer symbol completion behaves like minibuffer completion. For instance, if Emacs cannot complete to a |