From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/elisp/minibuffer-commands.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 devdocs/elisp/minibuffer-commands.html (limited to 'devdocs/elisp/minibuffer-commands.html') diff --git a/devdocs/elisp/minibuffer-commands.html b/devdocs/elisp/minibuffer-commands.html new file mode 100644 index 00000000..6286e5bc --- /dev/null +++ b/devdocs/elisp/minibuffer-commands.html @@ -0,0 +1,24 @@ +

Minibuffer Commands

This section describes some commands meant for use in the minibuffer.

Command: exit-minibuffer +

This command exits the active minibuffer. It is normally bound to keys in minibuffer local keymaps. The command throws an error if the current buffer is a minibuffer, but not the active minibuffer.

+
Command: self-insert-and-exit +

This command exits the active minibuffer after inserting the last character typed on the keyboard (found in last-command-event; see Command Loop Info).

+
Command: previous-history-element n +

This command replaces the minibuffer contents with the value of the nth previous (older) history element.

+
Command: next-history-element n +

This command replaces the minibuffer contents with the value of the nth more recent history element. The position in the history can go beyond the current position and invoke “future history” (see Text from Minibuffer).

+
Command: previous-matching-history-element pattern n +

This command replaces the minibuffer contents with the value of the nth previous (older) history element that matches pattern (a regular expression).

+
Command: next-matching-history-element pattern n +

This command replaces the minibuffer contents with the value of the nth next (newer) history element that matches pattern (a regular expression).

+
Command: previous-complete-history-element n +

This command replaces the minibuffer contents with the value of the nth previous (older) history element that completes the current contents of the minibuffer before the point.

+
Command: next-complete-history-element n +

This command replaces the minibuffer contents with the value of the nth next (newer) history element that completes the current contents of the minibuffer before the point.

+
Command: goto-history-element nabs +

This function puts element of the minibuffer history in the minibuffer. The argument nabs specifies the absolute history position in descending order, where 0 means the current element and a positive number n means the nth previous element. NABS being a negative number -n means the nth entry of “future history.”

+
+

+ Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
+ https://www.gnu.org/software/emacs/manual/html_node/elisp/Minibuffer-Commands.html +

+
-- cgit v1.2.3