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/motion-by-indent.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 devdocs/elisp/motion-by-indent.html (limited to 'devdocs/elisp/motion-by-indent.html') diff --git a/devdocs/elisp/motion-by-indent.html b/devdocs/elisp/motion-by-indent.html new file mode 100644 index 00000000..2c0e8911 --- /dev/null +++ b/devdocs/elisp/motion-by-indent.html @@ -0,0 +1,12 @@ +

Indentation-Based Motion Commands

These commands, primarily for interactive use, act based on the indentation in the text.

Command: back-to-indentation +

This command moves point to the first non-whitespace character in the current line (which is the line in which point is located). It returns nil.

+
Command: backward-to-indentation &optional arg +

This command moves point backward arg lines and then to the first nonblank character on that line. It returns nil. If arg is omitted or nil, it defaults to 1.

+
Command: forward-to-indentation &optional arg +

This command moves point forward arg lines and then to the first nonblank character on that line. It returns nil. If arg is omitted or nil, it defaults to 1.

+
+

+ 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/Motion-by-Indent.html +

+
-- cgit v1.2.3