aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-02-20 15:37:24 +0100
committerLars Ingebrigtsen2021-02-20 15:37:28 +0100
commit006d0ae396de59bce95bc0a3ff4648caee87babd (patch)
tree4ccd985daa3882f30a87e93562c3dc3548a18e01
parent4c4c2eab7eaf81f87f8513a40b8a38a1c071cfe6 (diff)
downloademacs-006d0ae396de59bce95bc0a3ff4648caee87babd.tar.gz
emacs-006d0ae396de59bce95bc0a3ff4648caee87babd.zip
Mention `M-S-x' in the Emacs manual.
* doc/emacs/m-x.texi (M-x): Mention `M-S-x' in the Emacs manual.
-rw-r--r--doc/emacs/m-x.texi8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/emacs/m-x.texi b/doc/emacs/m-x.texi
index c51f10a47aa..d35a8351541 100644
--- a/doc/emacs/m-x.texi
+++ b/doc/emacs/m-x.texi
@@ -58,6 +58,14 @@ Modes}). By default, no commands are excluded, but you can customize
58the option @code{read-extended-command-predicate} to exclude those 58the option @code{read-extended-command-predicate} to exclude those
59irrelevant commands from completion results. 59irrelevant commands from completion results.
60 60
61@kindex M-S-x
62 Conversely, Emacs can exclude all commands except those that are
63particularly relevant to the current buffer. The @kbd{M-S-x} (that's
64``meta shift x'') command works just like @kbd{M-x}, but instead of
65listing all (or most) of the commands Emacs knows about, it will only
66list the commands that have been marked as ``belonging'' to the
67current major mode, or any enabled minor modes.
68
61 To cancel the @kbd{M-x} and not run a command, type @kbd{C-g} instead 69 To cancel the @kbd{M-x} and not run a command, type @kbd{C-g} instead
62of entering the command name. This takes you back to command level. 70of entering the command name. This takes you back to command level.
63 71