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-contents.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 devdocs/elisp/minibuffer-contents.html (limited to 'devdocs/elisp/minibuffer-contents.html') diff --git a/devdocs/elisp/minibuffer-contents.html b/devdocs/elisp/minibuffer-contents.html new file mode 100644 index 00000000..a305ca8c --- /dev/null +++ b/devdocs/elisp/minibuffer-contents.html @@ -0,0 +1,18 @@ +

Minibuffer Contents

These functions access the minibuffer prompt and contents.

Function: minibuffer-prompt +

This function returns the prompt string of the currently active minibuffer. If no minibuffer is active, it returns nil.

+
Function: minibuffer-prompt-end +

This function returns the current position of the end of the minibuffer prompt, if a minibuffer is current. Otherwise, it returns the minimum valid buffer position.

+
Function: minibuffer-prompt-width +

This function returns the current display-width of the minibuffer prompt, if a minibuffer is current. Otherwise, it returns zero.

+
Function: minibuffer-contents +

This function returns the editable contents of the minibuffer (that is, everything except the prompt) as a string, if a minibuffer is current. Otherwise, it returns the entire contents of the current buffer.

+
Function: minibuffer-contents-no-properties +

This is like minibuffer-contents, except that it does not copy text properties, just the characters themselves. See Text Properties.

+
Command: delete-minibuffer-contents +

This command erases the editable contents of the minibuffer (that is, everything except the prompt), if a minibuffer is current. Otherwise, it erases the entire current buffer.

+
+

+ 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-Contents.html +

+
-- cgit v1.2.3