annotate lisp/indent.el @ 13577:d88cdc4a0cfe

(move-to-left-margin): Removed left-over code that made it fail on right-justified and centered text.
author Richard M. Stallman <rms@gnu.org>
date Fri, 17 Nov 1995 22:43:35 +0000
parents 1418ed733e9d
children 83f275dcd93a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 269
diff changeset
1 ;;; indent.el --- indentation commands for Emacs
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 269
diff changeset
2
11235
e6bdaaa6ce1b Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 11043
diff changeset
3 ;; Copyright (C) 1985, 1995 Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
4
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 732
diff changeset
5 ;; Maintainer: FSF
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
6
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
8
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 732
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
12 ;; any later version.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
13
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
17 ;; GNU General Public License for more details.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
18
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
22
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2201
diff changeset
23 ;;; Commentary:
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2201
diff changeset
24
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2201
diff changeset
25 ;; Commands for making and changing indentation in text. These are
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2201
diff changeset
26 ;; described in the Emacs manual.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2201
diff changeset
27
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 732
diff changeset
28 ;;; Code:
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
29
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
30 (defvar standard-indent 4 "\
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
31 Default number of columns for margin-changing functions to indent.")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
32
269
2ca8cdb96a9f *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 263
diff changeset
33 (defvar indent-line-function 'indent-to-left-margin "\
2192
96adb71c61ec * indent.el (indent-line-function): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 845
diff changeset
34 Function to indent current line.")
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
35
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
36 (defun indent-according-to-mode ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
37 "Indent line in proper way for current major mode."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
38 (interactive)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
39 (funcall indent-line-function))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
40
13035
b8453eab5114 (indent-for-tab-command): Get the prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 12778
diff changeset
41 (defun indent-for-tab-command (&optional prefix-arg)
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
42 "Indent line in proper way for current major mode."
13035
b8453eab5114 (indent-for-tab-command): Get the prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 12778
diff changeset
43 (interactive "P")
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
44 (if (eq indent-line-function 'indent-to-left-margin)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
45 (insert-tab)
13035
b8453eab5114 (indent-for-tab-command): Get the prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 12778
diff changeset
46 (if prefix-arg
b8453eab5114 (indent-for-tab-command): Get the prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 12778
diff changeset
47 (funcall indent-line-function prefix-arg)
b8453eab5114 (indent-for-tab-command): Get the prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 12778
diff changeset
48 (funcall indent-line-function))))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
49
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
50 (defun insert-tab ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
51 (if abbrev-mode
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
52 (expand-abbrev))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
53 (if indent-tabs-mode
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
54 (insert ?\t)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
55 (indent-to (* tab-width (1+ (/ (current-column) tab-width))))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
56
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
57 (defun indent-rigidly (start end arg)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
58 "Indent all lines starting in the region sideways by ARG columns.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
59 Called from a program, takes three arguments, START, END and ARG."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
60 (interactive "r\np")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
61 (save-excursion
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
62 (goto-char end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
63 (setq end (point-marker))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
64 (goto-char start)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
65 (or (bolp) (forward-line 1))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
66 (while (< (point) end)
8642
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
67 (let ((indent (current-indentation))
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
68 eol-flag)
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
69 (save-excursion
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
70 (skip-chars-forward " \t")
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
71 (setq eol-flag (eolp)))
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
72 (or eol-flag
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
73 (indent-to (max 0 (+ indent arg)) 0))
ae3b75bae5d7 (indent-rigidly): Insert new indent, then delete old.
Richard M. Stallman <rms@gnu.org>
parents: 8208
diff changeset
74 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
75 (forward-line 1))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
76 (move-marker end nil)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
77
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
78 (defun indent-line-to (column)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
79 "Indent current line to COLUMN.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
80 This function removes or adds spaces and tabs at beginning of line
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
81 only if necessary. It leaves point at end of indentation."
11043
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
82 (back-to-indentation)
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
83 (let ((cur-col (current-column)))
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
84 (cond ((< cur-col column)
13545
1418ed733e9d (indent-line-to): Delete spaces before inserting a tab.
Richard M. Stallman <rms@gnu.org>
parents: 13035
diff changeset
85 (if (> (- column (* (/ cur-col tab-width) tab-width)) tab-width)
1418ed733e9d (indent-line-to): Delete spaces before inserting a tab.
Richard M. Stallman <rms@gnu.org>
parents: 13035
diff changeset
86 (delete-region (point)
1418ed733e9d (indent-line-to): Delete spaces before inserting a tab.
Richard M. Stallman <rms@gnu.org>
parents: 13035
diff changeset
87 (progn (skip-chars-backward " ") (point))))
11043
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
88 (indent-to column))
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
89 ((> cur-col column) ; too far right (after tab?)
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
90 (delete-region (progn (move-to-column column t) (point))
11043
4c0a98538670 (indent-line-to): move to end of indentation, even if it didn't change.
Boris Goldowsky <boris@gnu.org>
parents: 10812
diff changeset
91 (progn (back-to-indentation) (point)))))))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
92
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
93 (defun current-left-margin ()
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
94 "Return the left margin to use for this line.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
95 This is the value of the buffer-local variable `left-margin' plus the value
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
96 of the `left-margin' text-property at the start of the line."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
97 (save-excursion
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
98 (back-to-indentation)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
99 (max 0
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
100 (+ left-margin (or (get-text-property
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
101 (if (and (eobp) (not (bobp)))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
102 (1- (point)) (point))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
103 'left-margin) 0)))))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
104
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
105 (defun move-to-left-margin (&optional n force)
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
106 "Move to the left margin of the current line.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
107 With optional argument, move forward N-1 lines first.
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
108 The column moved to is the one given by the `current-left-margin' function.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
109 If the line's indentation appears to be wrong, and this command is called
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
110 interactively or with optional argument FORCE, it will be fixed."
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
111 (interactive (list (prefix-numeric-value current-prefix-arg) t))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
112 (beginning-of-line n)
13577
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
113 (skip-chars-forward " \t")
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
114 (let ((lm (current-left-margin))
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
115 (cc (current-column)))
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
116 (cond ((> cc lm)
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
117 (if (> (move-to-column lm force) lm)
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
118 ;; If lm is in a tab and we are not forcing, move before tab
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
119 (backward-char 1)))
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
120 ((and force (< cc lm))
d88cdc4a0cfe (move-to-left-margin): Removed left-over code that
Richard M. Stallman <rms@gnu.org>
parents: 13545
diff changeset
121 (indent-to-left-margin)))))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
122
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
123 ;; This is the default indent-line-function,
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
124 ;; used in Fundamental Mode, Text Mode, etc.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
125 (defun indent-to-left-margin ()
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
126 "Indent current line to the column given by `current-left-margin'."
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
127 (indent-line-to (current-left-margin)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
128
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
129 (defun delete-to-left-margin (&optional from to)
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
130 "Remove left margin indentation from a region.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
131 This deletes to the column given by `current-left-margin'.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
132 In no case will it delete non-whitespace.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
133 Args FROM and TO are optional; default is the whole buffer."
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
134 (save-excursion
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
135 (goto-char (or to (point-max)))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
136 (setq to (point-marker))
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
137 (goto-char (or from (point-min)))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
138 (or (bolp) (forward-line 1))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
139 (while (< (point) to)
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
140 (delete-region (point) (progn (move-to-left-margin nil t) (point)))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
141 (forward-line 1))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
142 (move-marker to nil)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
143
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
144 (defun set-left-margin (from to lm)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
145 "Set the left margin of the region to WIDTH.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
146 If `auto-fill-mode' is active, re-fill the region to fit the new margin."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
147 (interactive "r\nNSet left margin to column: ")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
148 (if (interactive-p) (setq lm (prefix-numeric-value lm)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
149 (save-excursion
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
150 ;; If inside indentation, start from BOL.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
151 (goto-char from)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
152 (skip-chars-backward " \t")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
153 (if (bolp) (setq from (point)))
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
154 ;; Place end after whitespace
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
155 (goto-char to)
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
156 (skip-chars-forward " \t")
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
157 (setq to (point-marker)))
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
158 ;; Delete margin indentation first, but keep paragraph indentation.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
159 (delete-to-left-margin from to)
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
160 (put-text-property from to 'left-margin lm)
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
161 (indent-rigidly from to lm)
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
162 (if auto-fill-function (save-excursion (fill-region from to nil t t)))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
163 (move-marker to nil))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
164
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
165 (defun set-right-margin (from to lm)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
166 "Set the right margin of the region to WIDTH.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
167 If `auto-fill-mode' is active, re-fill the region to fit the new margin."
11281
10f9cf00c770 (set-right-margin): Fix prompt.
Richard M. Stallman <rms@gnu.org>
parents: 11235
diff changeset
168 (interactive "r\nNSet right margin to width: ")
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
169 (if (interactive-p) (setq lm (prefix-numeric-value lm)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
170 (save-excursion
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
171 (goto-char from)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
172 (skip-chars-backward " \t")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
173 (if (bolp) (setq from (point))))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
174 (put-text-property from to 'right-margin lm)
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
175 (if auto-fill-function (save-excursion (fill-region from to nil t t))))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
176
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
177 (defun alter-text-property (from to prop func &optional object)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
178 "Programmatically change value of a text-property.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
179 For each region between FROM and TO that has a single value for PROPERTY,
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
180 apply FUNCTION to that value and sets the property to the function's result.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
181 Optional fifth argument OBJECT specifies the string or buffer to operate on."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
182 (let ((begin from)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
183 end val)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
184 (while (setq val (get-text-property begin prop object)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
185 end (text-property-not-all begin to prop val object))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
186 (put-text-property begin end prop (funcall func val) object)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
187 (setq begin end))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
188 (if (< begin to)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
189 (put-text-property begin to prop (funcall func val) object))))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
190
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
191 (defun increase-left-margin (from to inc)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
192 "Increase or decrease the left-margin of the region.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
193 With no prefix argument, this adds `standard-indent' of indentation.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
194 A prefix arg (optional third arg INC noninteractively) specifies the amount
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
195 to change the margin by, in characters.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
196 If `auto-fill-mode' is active, re-fill the region to fit the new margin."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
197 (interactive "*r\nP")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
198 (setq inc (if inc (prefix-numeric-value inc) standard-indent))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
199 (save-excursion
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
200 (goto-char from)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
201 (skip-chars-backward " \t")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
202 (if (bolp) (setq from (point)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
203 (goto-char to)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
204 (setq to (point-marker)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
205 (alter-text-property from to 'left-margin
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
206 (lambda (v) (max (- left-margin) (+ inc (or v 0)))))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
207 (indent-rigidly from to inc)
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
208 (if auto-fill-function (save-excursion (fill-region from to nil t t)))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
209 (move-marker to nil))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
210
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
211 (defun decrease-left-margin (from to inc)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
212 "Make the left margin of the region smaller.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
213 With no prefix argument, decrease the indentation by `standard-indent'.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
214 A prefix arg (optional third arg INC noninteractively) specifies the amount
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
215 to change the margin by, in characters.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
216 If `auto-fill-mode' is active, re-fill the region to fit the new margin."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
217 (interactive "*r\nP")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
218 (setq inc (if inc (prefix-numeric-value inc) standard-indent))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
219 (increase-left-margin from to (- inc)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
220
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
221 (defun increase-right-margin (from to inc)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
222 "Increase the right-margin of the region.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
223 With no prefix argument, increase the right margin by `standard-indent'.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
224 A prefix arg (optional third arg INC noninteractively) specifies the amount
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
225 to change the margin by, in characters. A negative argument decreases
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
226 the right margin width.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
227 If `auto-fill-mode' is active, re-fill the region to fit the new margin."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
228 (interactive "r\nP")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
229 (if (interactive-p)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
230 (setq inc (if inc (prefix-numeric-value current-prefix-arg)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
231 standard-indent)))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
232 (save-excursion
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
233 (alter-text-property from to 'right-margin
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
234 (lambda (v) (+ inc (or v 0))))
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
235 (if auto-fill-function
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
236 (fill-region from to nil t t))))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
237
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
238 (defun decrease-right-margin (from to inc)
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
239 "Make the right margin of the region smaller.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
240 With no prefix argument, decrease the right margin by `standard-indent'.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
241 A prefix arg (optional third arg INC noninteractively) specifies the amount
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
242 of width to remove, in characters. A negative argument increases
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
243 the right margin width.
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
244 If `auto-fill-mode' is active, re-fills region to fit in new margin."
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
245 (interactive "*r\nP")
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
246 (setq inc (if inc (prefix-numeric-value inc) standard-indent))
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
247 (increase-right-margin from to (- inc)))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
248
10812
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
249 (defun beginning-of-line-text (&optional n)
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
250 "Move to the beginning of the text on this line.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
251 With optional argument, move forward N-1 lines first.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
252 From the beginning of the line, moves past the left-margin indentation, the
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
253 fill-prefix, and any indentation used for centering or right-justifying the
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
254 line, but does not move past any whitespace that was explicitly inserted
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
255 \(such as a tab used to indent the first line of a paragraph)."
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
256 (interactive "p")
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
257 (beginning-of-line n)
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
258 (skip-chars-forward " \t")
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
259 ;; Skip over fill-prefix.
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
260 (if (and fill-prefix
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
261 (not (string-equal fill-prefix "")))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
262 (if (equal fill-prefix
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
263 (buffer-substring
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
264 (point) (min (point-max) (+ (length fill-prefix) (point)))))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
265 (forward-char (length fill-prefix)))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
266 (if (and adaptive-fill-mode
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
267 (looking-at adaptive-fill-regexp))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
268 (goto-char (match-end 0))))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
269 ;; Skip centering or flushright indentation
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
270 (if (memq (current-justification) '(center right))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
271 (skip-chars-forward " \t")))
cd0a341fd620 (current-left-margin): careful of EOB.
Boris Goldowsky <boris@gnu.org>
parents: 10470
diff changeset
272
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
273 (defvar indent-region-function nil
12683
0e9d2009e609 (indent-region-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11281
diff changeset
274 "Short cut function to indent region using `indent-according-to-mode'.
0e9d2009e609 (indent-region-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11281
diff changeset
275 A value of nil means really run `indent-according-to-mode' on each line.")
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
276
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
277 (defun indent-region (start end column)
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
278 "Indent each nonblank line in the region.
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
279 With no argument, indent each line using `indent-according-to-mode',
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
280 or use `indent-region-function' to do the whole region if that's non-nil.
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
281 If there is a fill prefix, make each line start with the fill prefix.
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
282 With argument COLUMN, indent each line to that column.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
283 Called from a program, takes three args: START, END and COLUMN."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
284 (interactive "r\nP")
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
285 (if (null column)
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
286 (if fill-prefix
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
287 (save-excursion
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
288 (goto-char end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
289 (setq end (point-marker))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
290 (goto-char start)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
291 (let ((regexp (regexp-quote fill-prefix)))
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
292 (while (< (point) end)
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
293 (or (looking-at regexp)
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
294 (and (bolp) (eolp))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
295 (insert fill-prefix))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
296 (forward-line 1))))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
297 (if indent-region-function
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
298 (funcall indent-region-function start end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
299 (save-excursion
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
300 (goto-char end)
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
301 (setq end (point-marker))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
302 (goto-char start)
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
303 (or (bolp) (forward-line 1))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
304 (while (< (point) end)
4473
600d0d832d99 (indent-region): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents: 4465
diff changeset
305 (or (and (bolp) (eolp))
4465
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
306 (funcall indent-line-function))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
307 (forward-line 1))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
308 (move-marker end nil))))
794498c64928 (indent-region): Rename arg ARG to COLUMN.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
309 (setq column (prefix-numeric-value column))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
310 (save-excursion
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
311 (goto-char end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
312 (setq end (point-marker))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
313 (goto-char start)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
314 (or (bolp) (forward-line 1))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
315 (while (< (point) end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
316 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
317 (or (eolp)
10467
b8053ce05ab5 (standard-indent): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8642
diff changeset
318 (indent-to column 0))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
319 (forward-line 1))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
320 (move-marker end nil))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
321
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
322 (defun indent-relative-maybe ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
323 "Indent a new line like previous nonblank line."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
324 (interactive)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
325 (indent-relative t))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
326
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
327 (defun indent-relative (&optional unindented-ok)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
328 "Space out to under next indent point in previous nonblank line.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
329 An indent point is a non-whitespace character following whitespace.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
330 If the previous nonblank line has no indent points beyond the
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
331 column point starts at, `tab-to-tab-stop' is done instead."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
332 (interactive "P")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
333 (if abbrev-mode (expand-abbrev))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
334 (let ((start-column (current-column))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
335 indent)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
336 (save-excursion
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
337 (beginning-of-line)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
338 (if (re-search-backward "^[^\n]" nil t)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
339 (let ((end (save-excursion (forward-line 1) (point))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
340 (move-to-column start-column)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
341 ;; Is start-column inside a tab on this line?
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
342 (if (> (current-column) start-column)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
343 (backward-char 1))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
344 (or (looking-at "[ \t]")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
345 unindented-ok
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
346 (skip-chars-forward "^ \t" end))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
347 (skip-chars-forward " \t" end)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
348 (or (= (point) end) (setq indent (current-column))))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
349 (if indent
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
350 (let ((opoint (point-marker)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
351 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
352 (indent-to indent 0)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
353 (if (> opoint (point))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
354 (goto-char opoint))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
355 (move-marker opoint nil))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
356 (tab-to-tab-stop))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
357
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
358 (defvar tab-stop-list
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
359 '(8 16 24 32 40 48 56 64 72 80 88 96 104 112 120)
7813
1fa576a274b5 (tab-stop-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4473
diff changeset
360 "*List of tab stop positions used by `tab-to-tab-stops'.
1fa576a274b5 (tab-stop-list): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4473
diff changeset
361 This should be a list of integers, ordered from smallest to largest.")
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
362
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
363 (defvar edit-tab-stops-map nil "Keymap used in `edit-tab-stops'.")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
364 (if edit-tab-stops-map
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
365 nil
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
366 (setq edit-tab-stops-map (make-sparse-keymap))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
367 (define-key edit-tab-stops-map "\C-x\C-s" 'edit-tab-stops-note-changes)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
368 (define-key edit-tab-stops-map "\C-c\C-c" 'edit-tab-stops-note-changes))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
369
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
370 (defvar edit-tab-stops-buffer nil
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
371 "Buffer whose tab stops are being edited--in case
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
372 the variable `tab-stop-list' is local in that buffer.")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
373
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
374 (defun edit-tab-stops ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
375 "Edit the tab stops used by `tab-to-tab-stop'.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
376 Creates a buffer *Tab Stops* containing text describing the tab stops.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
377 A colon indicates a column where there is a tab stop.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
378 You can add or remove colons and then do \\<edit-tab-stops-map>\\[edit-tab-stops-note-changes] to make changes take effect."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
379 (interactive)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
380 (setq edit-tab-stops-buffer (current-buffer))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
381 (switch-to-buffer (get-buffer-create "*Tab Stops*"))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
382 (use-local-map edit-tab-stops-map)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
383 (make-local-variable 'indent-tabs-mode)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
384 (setq indent-tabs-mode nil)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
385 (overwrite-mode 1)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
386 (setq truncate-lines t)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
387 (erase-buffer)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
388 (let ((tabs tab-stop-list))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
389 (while tabs
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
390 (indent-to (car tabs) 0)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
391 (insert ?:)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
392 (setq tabs (cdr tabs))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
393 (let ((count 0))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
394 (insert ?\n)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
395 (while (< count 8)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
396 (insert (+ count ?0))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
397 (insert " ")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
398 (setq count (1+ count)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
399 (insert ?\n)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
400 (while (> count 0)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
401 (insert "0123456789")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
402 (setq count (1- count))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
403 (insert "\nTo install changes, type C-c C-c")
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
404 (goto-char (point-min)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
405
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
406 (defun edit-tab-stops-note-changes ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
407 "Put edited tab stops into effect."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
408 (interactive)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
409 (let (tabs)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
410 (save-excursion
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
411 (goto-char 1)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
412 (end-of-line)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
413 (while (search-backward ":" nil t)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
414 (setq tabs (cons (current-column) tabs))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
415 (bury-buffer (prog1 (current-buffer)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
416 (switch-to-buffer edit-tab-stops-buffer)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
417 (setq tab-stop-list tabs))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
418 (message "Tab stops installed"))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
419
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
420 (defun tab-to-tab-stop ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
421 "Insert spaces or tabs to next defined tab-stop column.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
422 The variable `tab-stop-list' is a list of columns at which there are tab stops.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
423 Use \\[edit-tab-stops] to edit them interactively."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
424 (interactive)
12778
657be7aaa043 (tab-to-tab-stop): Expand abbrevs only after a word-char.
Richard M. Stallman <rms@gnu.org>
parents: 12683
diff changeset
425 (and abbrev-mode (= (char-syntax (preceding-char)) ?w)
657be7aaa043 (tab-to-tab-stop): Expand abbrevs only after a word-char.
Richard M. Stallman <rms@gnu.org>
parents: 12683
diff changeset
426 (expand-abbrev))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
427 (let ((tabs tab-stop-list))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
428 (while (and tabs (>= (current-column) (car tabs)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
429 (setq tabs (cdr tabs)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
430 (if tabs
7973
b7ea350590a7 (tab-to-tab-stop): Combine new indentation with previous.
Richard M. Stallman <rms@gnu.org>
parents: 7813
diff changeset
431 (let ((opoint (point)))
b7ea350590a7 (tab-to-tab-stop): Combine new indentation with previous.
Richard M. Stallman <rms@gnu.org>
parents: 7813
diff changeset
432 (skip-chars-backward " \t")
b7ea350590a7 (tab-to-tab-stop): Combine new indentation with previous.
Richard M. Stallman <rms@gnu.org>
parents: 7813
diff changeset
433 (delete-region (point) opoint)
b7ea350590a7 (tab-to-tab-stop): Combine new indentation with previous.
Richard M. Stallman <rms@gnu.org>
parents: 7813
diff changeset
434 (indent-to (car tabs)))
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
435 (insert ?\ ))))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
436
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
437 (defun move-to-tab-stop ()
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
438 "Move point to next defined tab-stop column.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
439 The variable `tab-stop-list' is a list of columns at which there are tab stops.
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
440 Use \\[edit-tab-stops] to edit them interactively."
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
441 (interactive)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
442 (let ((tabs tab-stop-list))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
443 (while (and tabs (>= (current-column) (car tabs)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
444 (setq tabs (cdr tabs)))
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
445 (if tabs
8037
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
446 (let ((before (point)))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
447 (move-to-column (car tabs) t)
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
448 (save-excursion
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
449 (goto-char before)
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
450 ;; If we just added a tab, or moved over one,
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
451 ;; delete any superfluous spaces before the old point.
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
452 (if (and (eq (preceding-char) ?\ )
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
453 (eq (following-char) ?\t))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
454 (let ((tabend (* (/ (current-column) tab-width) tab-width)))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
455 (while (and (> (current-column) tabend)
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
456 (eq (preceding-char) ?\ ))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
457 (forward-char -1))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
458 (delete-region (point) before))))))))
fd5fb80a940d (move-to-tab-stop): Delete unnecessary spaces
Richard M. Stallman <rms@gnu.org>
parents: 7984
diff changeset
459
263
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
460 (define-key global-map "\t" 'indent-for-tab-command)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
461 (define-key esc-map "\034" 'indent-region)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
462 (define-key ctl-x-map "\t" 'indent-rigidly)
57bcc096ab9c Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
463 (define-key esc-map "i" 'tab-to-tab-stop)
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 269
diff changeset
464
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 269
diff changeset
465 ;;; indent.el ends here