2013-08-20 22:13:29 +00:00
|
|
|
;;; align.el --- align text to a specific column, by regexp -*- lexical-binding:t -*-
|
2000-01-14 14:02:21 +00:00
|
|
|
|
2023-01-01 10:31:12 +00:00
|
|
|
;; Copyright (C) 1999-2023 Free Software Foundation, Inc.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
2008-12-03 05:48:14 +00:00
|
|
|
;; Author: John Wiegley <johnw@gnu.org>
|
2019-05-25 20:43:06 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2000-01-14 14:02:21 +00:00
|
|
|
;; Keywords: convenience languages lisp
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2000-01-14 14:02:21 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This mode allows you to align regions in a context-sensitive fashion.
|
|
|
|
;; The classic use is to align assignments:
|
|
|
|
;;
|
|
|
|
;; int a = 1;
|
|
|
|
;; short foo = 2;
|
|
|
|
;; double blah = 4;
|
|
|
|
;;
|
|
|
|
;; becomes
|
|
|
|
;;
|
|
|
|
;; int a = 1;
|
|
|
|
;; short foo = 2;
|
|
|
|
;; double blah = 4;
|
|
|
|
|
|
|
|
;;; Usage:
|
|
|
|
|
|
|
|
;; There are several variables which define how certain "categories"
|
|
|
|
;; of syntax are to be treated. These variables go by the name
|
|
|
|
;; `align-CATEGORY-modes'. For example, "c++" is such a category.
|
|
|
|
;; There are several rules which apply to c++, but since several other
|
|
|
|
;; languages have a syntax similar to c++ (e.g., c, java, etc), these
|
|
|
|
;; modes are treated as belonging to the same category.
|
|
|
|
;;
|
|
|
|
;; If you want to add a new mode under a certain category, just
|
|
|
|
;; customize that list, or add the new mode manually. For example, to
|
|
|
|
;; make jde-mode a c++ category mode, use this code in your .emacs
|
|
|
|
;; file:
|
|
|
|
;;
|
|
|
|
;; (setq align-c++-modes (cons 'jde-mode align-c++-modes))
|
|
|
|
|
|
|
|
;; In some programming modes, it's useful to have the aligner run only
|
|
|
|
;; after indentation is performed. To achieve this, customize or set
|
|
|
|
;; the variable `align-indent-before-aligning' to t.
|
|
|
|
|
|
|
|
;;; Module Authors:
|
|
|
|
|
|
|
|
;; In order to incorporate align's functionality into your own
|
|
|
|
;; modules, there are only a few steps you have to follow.
|
|
|
|
|
|
|
|
;; 1. Require or load in the align.el library.
|
|
|
|
;;
|
|
|
|
;; 2. Define your alignment and exclusion rules lists, either
|
|
|
|
;; customizable or not.
|
|
|
|
;;
|
|
|
|
;; 3. In your mode function, set the variables
|
|
|
|
;; `align-mode-rules-list' and `align-mode-exclude-rules-list'
|
|
|
|
;; to your own rules lists.
|
|
|
|
|
|
|
|
;; If there is any need to add your mode name to one of the
|
|
|
|
;; align-?-modes variables (for example, `align-dq-string-modes'), use
|
|
|
|
;; `add-to-list', or some similar function which checks first to see
|
|
|
|
;; if the value is already there. Since the user may customize that
|
2012-09-17 05:41:04 +00:00
|
|
|
;; mode list, and then write your mode name into their init file,
|
2000-01-14 14:02:21 +00:00
|
|
|
;; causing the symbol already to be present the next time they load
|
|
|
|
;; your package.
|
|
|
|
|
|
|
|
;; Example:
|
|
|
|
;;
|
|
|
|
;; (require 'align)
|
|
|
|
;;
|
|
|
|
;; (defcustom my-align-rules-list
|
|
|
|
;; '((my-rule
|
|
|
|
;; (regexp . "Sample")))
|
|
|
|
;; :type align-rules-list-type
|
2022-07-11 08:33:45 +00:00
|
|
|
;; :risky t
|
2000-01-14 14:02:21 +00:00
|
|
|
;; :group 'my-package)
|
|
|
|
;;
|
|
|
|
;; (add-to-list 'align-dq-string-modes 'my-package-mode)
|
|
|
|
;; (add-to-list 'align-open-comment-modes 'my-package-mode)
|
|
|
|
;;
|
|
|
|
;; (defun my-mode ()
|
|
|
|
;; ...
|
|
|
|
;; (setq align-mode-rules-list my-align-rules-list))
|
|
|
|
;;
|
|
|
|
;; Note that if you need to install your own exclusion rules, then you
|
|
|
|
;; will also need to reproduce any double-quoted string, or open
|
|
|
|
;; comment exclusion rules that are defined in the standard
|
|
|
|
;; `align-exclude-rules-list'. At the moment there is no convenient
|
|
|
|
;; way to mix both mode-local and global rules lists.
|
|
|
|
|
|
|
|
;;; History:
|
|
|
|
|
|
|
|
;; Version 1.0 was created in the earlier part of 1996, using a very
|
|
|
|
;; simple algorithm that understand only basic regular expressions.
|
|
|
|
;; Parts of the code were broken up and included in vhdl-mode.el
|
|
|
|
;; around this time. After several comments from users, and a need to
|
2011-12-05 08:55:25 +00:00
|
|
|
;; find a more robust, higher performing algorithm, 2.0 was born in late
|
2000-01-14 14:02:21 +00:00
|
|
|
;; 1998. Many different approaches were taken (mostly due to the
|
|
|
|
;; complexity of TeX tables), but finally a scheme was discovered
|
|
|
|
;; which worked fairly well for most common usage cases. Development
|
|
|
|
;; beyond version 2.8 is not planned, except for problems that users
|
|
|
|
;; might encounter.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defgroup align nil
|
|
|
|
"Align text to a specific column, by regexp."
|
2000-08-16 21:26:01 +00:00
|
|
|
:version "21.1"
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'fill)
|
|
|
|
|
|
|
|
;;; User Variables:
|
|
|
|
|
|
|
|
(defcustom align-load-hook nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"Hook that gets run after the aligner has been loaded."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type 'hook
|
|
|
|
:group 'align)
|
2020-01-17 07:06:04 +00:00
|
|
|
(make-obsolete-variable 'align-load-hook
|
|
|
|
"use `with-eval-after-load' instead." "28.1")
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(defcustom align-indent-before-aligning nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"If non-nil, indent the marked region before aligning it."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type 'boolean
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-default-spacing 1
|
2008-12-03 05:48:14 +00:00
|
|
|
"An integer that represents the default amount of padding to use.
|
2000-01-14 14:02:21 +00:00
|
|
|
If `align-to-tab-stop' is non-nil, this will represent the number of
|
|
|
|
tab stops to use for alignment, rather than the number of spaces.
|
2010-07-30 00:50:13 +00:00
|
|
|
Each alignment rule can optionally override both this variable and
|
|
|
|
`align-to-tab-stop'. See `align-rules-list'."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-to-tab-stop 'indent-tabs-mode
|
2008-12-03 05:48:14 +00:00
|
|
|
"If non-nil, alignments will always fall on a tab boundary.
|
2000-01-14 14:02:21 +00:00
|
|
|
It may also be a symbol, whose value will be taken."
|
|
|
|
:type '(choice (const nil) symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-region-heuristic 500
|
2008-12-03 05:48:14 +00:00
|
|
|
"If non-nil, used as a heuristic by `align-current'.
|
2000-01-14 14:02:21 +00:00
|
|
|
Since each alignment rule can possibly have its own set of alignment
|
|
|
|
sections (whenever `align-region-separate' is non-nil, and not a
|
|
|
|
string), this heuristic is used to determine how far before and after
|
|
|
|
point we should search in looking for a region separator. Larger
|
2010-07-30 00:50:13 +00:00
|
|
|
values can mean slower performance in large files, although smaller
|
|
|
|
values may cause unexpected behavior at times."
|
2022-02-19 12:34:11 +00:00
|
|
|
:type '(choice (const :tag "Don't use heuristic when aligning a region" nil)
|
|
|
|
integer)
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-highlight-change-face 'highlight
|
2008-12-03 05:48:14 +00:00
|
|
|
"The face to highlight with if changes are necessary."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type 'face
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-highlight-nochange-face 'secondary-selection
|
2008-12-03 05:48:14 +00:00
|
|
|
"The face to highlight with if no changes are necessary."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type 'face
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-large-region 10000
|
2008-12-03 05:48:14 +00:00
|
|
|
"If an integer, defines what constitutes a \"large\" region.
|
2009-03-26 16:21:25 +00:00
|
|
|
If nil, then no messages will ever be printed to the minibuffer."
|
2022-02-19 12:34:11 +00:00
|
|
|
:type '(choice (const :tag "Align a large region silently" nil) integer)
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
|
|
|
|
2023-01-08 00:52:17 +00:00
|
|
|
(defcustom align-c++-modes '( c++-mode c-mode java-mode
|
|
|
|
c-ts-mode c++-ts-mode)
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes whose syntax resembles C/C++."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-perl-modes '(perl-mode cperl-mode)
|
2009-03-26 16:21:25 +00:00
|
|
|
"A list of modes where Perl syntax is to be seen."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-lisp-modes
|
|
|
|
'(emacs-lisp-mode lisp-interaction-mode lisp-mode scheme-mode)
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes whose syntax resembles Lisp."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-tex-modes
|
|
|
|
'(tex-mode plain-tex-mode latex-mode slitex-mode)
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes whose syntax resembles TeX (and family)."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-text-modes '(text-mode outline-mode)
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes whose content is plain text."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
2000-06-07 15:34:14 +00:00
|
|
|
(defcustom align-dq-string-modes
|
|
|
|
(append align-lisp-modes align-c++-modes align-perl-modes
|
2019-09-26 10:31:37 +00:00
|
|
|
'(python-mode vhdl-mode))
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes where double quoted strings should be excluded."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
2000-06-07 15:34:14 +00:00
|
|
|
(defcustom align-sq-string-modes
|
|
|
|
(append align-perl-modes '(python-mode))
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes where single quoted strings should be excluded."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
2000-06-07 15:34:14 +00:00
|
|
|
(defcustom align-open-comment-modes
|
|
|
|
(append align-lisp-modes align-c++-modes align-perl-modes
|
2019-09-26 10:31:37 +00:00
|
|
|
'(python-mode makefile-mode vhdl-mode))
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of modes with a single-line comment syntax.
|
2009-03-26 16:21:25 +00:00
|
|
|
These are comments as in Lisp, which have a beginning, but end with
|
2000-01-14 14:02:21 +00:00
|
|
|
the line (i.e., `comment-end' is an empty string)."
|
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defcustom align-region-separate "^\\s-*[{}]?\\s-*$"
|
2008-12-03 05:48:14 +00:00
|
|
|
"Select the method by which alignment sections will be separated.
|
2000-01-14 14:02:21 +00:00
|
|
|
If this is a symbol, that symbol's value will be used.
|
|
|
|
|
|
|
|
For the sake of clarification, consider the following example, which
|
|
|
|
will be referred to in the descriptions below.
|
|
|
|
|
|
|
|
int alpha = 1; /* one */
|
|
|
|
double beta = 2.0;
|
|
|
|
long gamma; /* ten */
|
|
|
|
|
|
|
|
unsigned int delta = 1; /* one */
|
|
|
|
long double epsilon = 3.0;
|
|
|
|
long long omega; /* ten */
|
|
|
|
|
|
|
|
The possible settings for `align-region-separate' are:
|
|
|
|
|
|
|
|
`entire' The entire region being aligned will be considered as a
|
|
|
|
single alignment section. Assuming that comments were not
|
|
|
|
being aligned to a particular column, the example would
|
|
|
|
become:
|
|
|
|
|
|
|
|
int alpha = 1; /* one */
|
|
|
|
double beta = 2.0;
|
|
|
|
long gamma; /* ten */
|
|
|
|
|
|
|
|
unsigned int delta = 1; /* one */
|
|
|
|
long double epsilon;
|
|
|
|
long long chi = 10; /* ten */
|
|
|
|
|
|
|
|
`group' Each contiguous set of lines where a specific alignment
|
|
|
|
occurs is considered a section for that alignment rule.
|
2009-03-26 16:21:25 +00:00
|
|
|
Note that each rule may have any entirely different set
|
2020-02-09 14:33:14 +00:00
|
|
|
of section divisions from another.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
int alpha = 1; /* one */
|
|
|
|
double beta = 2.0;
|
|
|
|
long gamma; /* ten */
|
|
|
|
|
|
|
|
unsigned int delta = 1; /* one */
|
|
|
|
long double epsilon;
|
|
|
|
long long chi = 10; /* ten */
|
|
|
|
|
|
|
|
`largest' When contiguous rule sets overlap, the largest section
|
|
|
|
described will be taken as the alignment section for each
|
|
|
|
rule touched by that section.
|
|
|
|
|
|
|
|
int alpha = 1; /* one */
|
|
|
|
double beta = 2.0;
|
|
|
|
long gamma; /* ten */
|
|
|
|
|
|
|
|
unsigned int delta = 1; /* one */
|
|
|
|
long double epsilon;
|
|
|
|
long long chi = 10; /* ten */
|
|
|
|
|
|
|
|
NOTE: This option is not supported yet, due to algorithmic
|
|
|
|
issues which haven't been satisfactorily resolved. There
|
|
|
|
are ways to do it, but they're both ugly and resource
|
|
|
|
consumptive.
|
|
|
|
|
|
|
|
regexp A regular expression string which defines the section
|
|
|
|
divider. If the mode you're in has a consistent divider
|
|
|
|
between sections, the behavior will be very similar to
|
|
|
|
`largest', and faster. But if the mode does not use clear
|
|
|
|
separators (for example, if you collapse your braces onto
|
2009-03-26 16:21:25 +00:00
|
|
|
the preceding statement in C or Perl), `largest' is
|
2000-01-14 14:02:21 +00:00
|
|
|
probably the better alternative.
|
|
|
|
|
|
|
|
function A function that will be passed the beginning and ending
|
|
|
|
locations of the region in which to look for the section
|
|
|
|
separator. At the very beginning of the attempt to align,
|
|
|
|
both of these parameters will be nil, in which case the
|
|
|
|
function should return non-nil if it wants each rule to
|
|
|
|
define its own section, or nil if it wants the largest
|
2009-03-26 16:21:25 +00:00
|
|
|
section found to be used as the common section for all
|
|
|
|
rules that occur there.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
list A list of markers within the buffer that represent where
|
|
|
|
the section dividers lie. Be certain to use markers! For
|
|
|
|
when the aligning begins, the ensuing contract/expanding of
|
|
|
|
whitespace will throw off any non-marker positions.
|
|
|
|
|
|
|
|
This method is intended for use in Lisp programs, and not
|
|
|
|
by the user."
|
|
|
|
:type '(choice
|
|
|
|
(const :tag "Entire region is one section" entire)
|
|
|
|
(const :tag "Align by contiguous groups" group)
|
|
|
|
; (const largest)
|
|
|
|
(regexp :tag "Regexp defines section boundaries")
|
|
|
|
(function :tag "Function defines section boundaries"))
|
2022-07-11 08:33:45 +00:00
|
|
|
:risky t
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defvar align-rules-list-type
|
|
|
|
'(repeat
|
|
|
|
(cons
|
|
|
|
:tag "Alignment rule"
|
|
|
|
(symbol :tag "Title")
|
|
|
|
(cons :tag "Required attributes"
|
|
|
|
(cons :tag "Regexp"
|
|
|
|
(const :tag "(Regular expression to match)" regexp)
|
|
|
|
(choice :value "\\(\\s-+\\)" regexp function))
|
|
|
|
(repeat
|
|
|
|
:tag "Optional attributes"
|
|
|
|
(choice
|
|
|
|
(cons :tag "Repeat"
|
|
|
|
(const :tag "(Repeat this rule throughout line)"
|
|
|
|
repeat)
|
|
|
|
(boolean :value t))
|
|
|
|
(cons :tag "Paren group"
|
|
|
|
(const :tag "(Parenthesis group to use)" group)
|
|
|
|
(choice :value 2
|
|
|
|
integer (repeat integer)))
|
|
|
|
(cons :tag "Modes"
|
|
|
|
(const :tag "(Modes where this rule applies)" modes)
|
|
|
|
(sexp :value (text-mode)))
|
|
|
|
(cons :tag "Case-fold"
|
|
|
|
(const :tag "(Should case be ignored for this rule)"
|
|
|
|
case-fold)
|
|
|
|
(boolean :value t))
|
|
|
|
(cons :tag "To Tab Stop"
|
|
|
|
(const :tag "(Should rule align to tab stops)"
|
|
|
|
tab-stop)
|
|
|
|
(boolean :value nil))
|
|
|
|
(cons :tag "Valid"
|
|
|
|
(const :tag "(Return non-nil if rule is valid)"
|
|
|
|
valid)
|
2022-02-19 12:34:11 +00:00
|
|
|
(function :value always))
|
2000-01-14 14:02:21 +00:00
|
|
|
(cons :tag "Run If"
|
|
|
|
(const :tag "(Return non-nil if rule should run)"
|
|
|
|
run-if)
|
2022-02-19 12:34:11 +00:00
|
|
|
(function :value always))
|
2000-01-14 14:02:21 +00:00
|
|
|
(cons :tag "Column"
|
|
|
|
(const :tag "(Column to fix alignment at)" column)
|
|
|
|
(choice :value comment-column
|
|
|
|
integer symbol))
|
|
|
|
(cons :tag "Spacing"
|
|
|
|
(const :tag "(Amount of spacing to use)" spacing)
|
|
|
|
(integer :value 1))
|
|
|
|
(cons :tag "Justify"
|
|
|
|
(const :tag "(Should text be right justified)"
|
|
|
|
justify)
|
|
|
|
(boolean :value t))
|
|
|
|
;; make sure this stays up-to-date with any changes
|
|
|
|
;; in `align-region-separate'
|
|
|
|
(cons :tag "Separate"
|
|
|
|
(const :tag "(Separation to use for this rule)"
|
|
|
|
separate)
|
|
|
|
(choice :value "^\\s-*$"
|
|
|
|
(const entire)
|
|
|
|
(const group)
|
|
|
|
; (const largest)
|
|
|
|
regexp function)))))))
|
|
|
|
"The `type' form for any `align-rules-list' variable.")
|
|
|
|
|
|
|
|
(defcustom align-rules-list
|
|
|
|
`((lisp-second-arg
|
|
|
|
(regexp . "\\(^\\s-+[^( \t\n]\\|(\\(\\S-+\\)\\s-+\\)\\S-+\\(\\s-+\\)")
|
|
|
|
(group . 3)
|
|
|
|
(modes . align-lisp-modes)
|
2020-09-30 14:18:50 +00:00
|
|
|
(run-if . ,(lambda () current-prefix-arg)))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(lisp-alist-dot
|
|
|
|
(regexp . "\\(\\s-*\\)\\.\\(\\s-*\\)")
|
|
|
|
(group . (1 2))
|
|
|
|
(modes . align-lisp-modes))
|
|
|
|
|
|
|
|
(open-comment
|
2020-12-30 12:06:27 +00:00
|
|
|
(regexp . ,(lambda (end reverse)
|
|
|
|
(funcall (if reverse 're-search-backward
|
|
|
|
're-search-forward)
|
|
|
|
(concat "[^ \t\n\\]"
|
|
|
|
(regexp-quote comment-start)
|
|
|
|
"\\(.+\\)$") end t)))
|
2000-01-14 14:02:21 +00:00
|
|
|
(modes . align-open-comment-modes))
|
|
|
|
|
|
|
|
(c-macro-definition
|
|
|
|
(regexp . "^\\s-*#\\s-*define\\s-+\\S-+\\(\\s-+\\)")
|
|
|
|
(modes . align-c++-modes))
|
|
|
|
|
|
|
|
(c-variable-declaration
|
2020-12-28 01:47:25 +00:00
|
|
|
(regexp . ,(concat "[*&0-9A-Za-z_]>?[][&*]*\\(\\s-+[*&]*\\)"
|
2020-12-02 12:07:40 +00:00
|
|
|
"[A-Za-z_][][0-9A-Za-z:_]*\\s-*\\(\\()\\|"
|
2019-04-13 02:43:16 +00:00
|
|
|
"=[^=\n].*\\|(.*)\\|\\(\\[.*\\]\\)*\\)"
|
2000-01-14 14:02:21 +00:00
|
|
|
"\\s-*[;,]\\|)\\s-*$\\)"))
|
|
|
|
(group . 1)
|
|
|
|
(modes . align-c++-modes)
|
|
|
|
(justify . t)
|
|
|
|
(valid
|
2020-12-30 12:06:27 +00:00
|
|
|
. ,(lambda ()
|
|
|
|
(not (or (save-excursion
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
(backward-word 1)
|
|
|
|
(looking-at
|
|
|
|
"\\(goto\\|return\\|new\\|delete\\|throw\\)"))
|
2021-02-05 00:14:17 +00:00
|
|
|
(if font-lock-mode
|
2020-12-30 12:06:27 +00:00
|
|
|
(eq (get-text-property (point) 'face)
|
|
|
|
'font-lock-comment-face)
|
|
|
|
(eq (caar (c-guess-basic-syntax)) 'c)))))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(c-assignment
|
|
|
|
(regexp . ,(concat "[^-=!^&*+<>/| \t\n]\\(\\s-*[-=!^&*+<>/|]*\\)"
|
|
|
|
"=\\(\\s-*\\)\\([^= \t\n]\\|$\\)"))
|
|
|
|
(group . (1 2))
|
|
|
|
(modes . align-c++-modes)
|
|
|
|
(justify . t)
|
|
|
|
(tab-stop . nil))
|
|
|
|
|
|
|
|
(perl-assignment
|
2019-03-27 02:06:36 +00:00
|
|
|
(regexp . ,(concat "[^=!^&*+<>/| \t\n-]\\(\\s-*\\)=[~>]?"
|
2000-01-14 14:02:21 +00:00
|
|
|
"\\(\\s-*\\)\\([^>= \t\n]\\|$\\)"))
|
|
|
|
(group . (1 2))
|
|
|
|
(modes . align-perl-modes)
|
|
|
|
(tab-stop . nil))
|
|
|
|
|
2000-06-07 15:34:14 +00:00
|
|
|
(python-assignment
|
|
|
|
(regexp . ,(concat "[^=!<> \t\n]\\(\\s-*\\)="
|
|
|
|
"\\(\\s-*\\)\\([^>= \t\n]\\|$\\)"))
|
|
|
|
(group . (1 2))
|
|
|
|
(modes . '(python-mode))
|
|
|
|
(tab-stop . nil))
|
|
|
|
|
2000-01-14 14:02:21 +00:00
|
|
|
(make-assignment
|
2019-03-19 00:02:01 +00:00
|
|
|
(regexp . "^\\s-*\\w+\\(\\s-*\\):?=\\(\\s-*\\)\\([^\t\n \\]\\|$\\)")
|
2000-01-14 14:02:21 +00:00
|
|
|
(group . (1 2))
|
|
|
|
(modes . '(makefile-mode))
|
|
|
|
(tab-stop . nil))
|
|
|
|
|
|
|
|
(c-comma-delimiter
|
|
|
|
(regexp . ",\\(\\s-*\\)[^/ \t\n]")
|
|
|
|
(repeat . t)
|
|
|
|
(modes . align-c++-modes)
|
2020-09-30 14:18:50 +00:00
|
|
|
(run-if . ,(lambda () current-prefix-arg)))
|
2005-03-08 03:59:54 +00:00
|
|
|
; (valid
|
2020-12-30 12:06:27 +00:00
|
|
|
; . ,(lambda ()
|
2005-03-08 03:59:54 +00:00
|
|
|
; (memq (caar (c-guess-basic-syntax))
|
|
|
|
; '(brace-list-intro
|
|
|
|
; brace-list-entry
|
2020-12-30 12:06:27 +00:00
|
|
|
; brace-entry-open)))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;; With a prefix argument, comma delimiter will be aligned. Since
|
|
|
|
;; perl-mode doesn't give us enough syntactic information (and we
|
|
|
|
;; don't do our own parsing yet), this rule is too destructive to
|
|
|
|
;; run normally.
|
2000-06-07 15:34:14 +00:00
|
|
|
(basic-comma-delimiter
|
2000-01-14 14:02:21 +00:00
|
|
|
(regexp . ",\\(\\s-*\\)[^# \t\n]")
|
|
|
|
(repeat . t)
|
2000-06-07 15:34:14 +00:00
|
|
|
(modes . (append align-perl-modes '(python-mode)))
|
2020-09-30 14:18:50 +00:00
|
|
|
(run-if . ,(lambda () current-prefix-arg)))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(c++-comment
|
|
|
|
(regexp . "\\(\\s-*\\)\\(//.*\\|/\\*.*\\*/\\s-*\\)$")
|
|
|
|
(modes . align-c++-modes)
|
|
|
|
(column . comment-column)
|
2020-12-30 12:06:27 +00:00
|
|
|
(valid . ,(lambda ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
(not (bolp))))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(c-chain-logic
|
|
|
|
(regexp . "\\(\\s-*\\)\\(&&\\|||\\|\\<and\\>\\|\\<or\\>\\)")
|
|
|
|
(modes . align-c++-modes)
|
2020-12-30 12:06:27 +00:00
|
|
|
(valid . ,(lambda ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-end 2))
|
|
|
|
(looking-at "\\s-*\\(/[*/]\\|$\\)")))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(perl-chain-logic
|
|
|
|
(regexp . "\\(\\s-*\\)\\(&&\\|||\\|\\<and\\>\\|\\<or\\>\\)")
|
|
|
|
(modes . align-perl-modes)
|
2020-12-30 12:06:27 +00:00
|
|
|
(valid . ,(lambda ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-end 2))
|
|
|
|
(looking-at "\\s-*\\(#\\|$\\)")))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
2000-06-07 15:34:14 +00:00
|
|
|
(python-chain-logic
|
|
|
|
(regexp . "\\(\\s-*\\)\\(\\<and\\>\\|\\<or\\>\\)")
|
|
|
|
(modes . '(python-mode))
|
2020-12-30 12:06:27 +00:00
|
|
|
(valid . ,(lambda ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-end 2))
|
|
|
|
(looking-at "\\s-*\\(#\\|$\\|\\\\\\)")))))
|
2000-06-07 15:34:14 +00:00
|
|
|
|
|
|
|
(c-macro-line-continuation
|
|
|
|
(regexp . "\\(\\s-*\\)\\\\$")
|
|
|
|
(modes . align-c++-modes)
|
|
|
|
(column . c-backslash-column))
|
2005-03-08 03:59:54 +00:00
|
|
|
; (valid
|
2020-12-30 12:06:27 +00:00
|
|
|
; . ,(lambda ()
|
2005-03-08 03:59:54 +00:00
|
|
|
; (memq (caar (c-guess-basic-syntax))
|
2020-12-30 12:06:27 +00:00
|
|
|
; '(cpp-macro cpp-macro-cont)))))
|
2000-06-07 15:34:14 +00:00
|
|
|
|
|
|
|
(basic-line-continuation
|
|
|
|
(regexp . "\\(\\s-*\\)\\\\$")
|
|
|
|
(modes . '(python-mode makefile-mode)))
|
|
|
|
|
2000-01-14 14:02:21 +00:00
|
|
|
(tex-record-separator
|
2020-12-30 12:06:27 +00:00
|
|
|
(regexp . ,(lambda (end reverse)
|
|
|
|
(align-match-tex-pattern "&" end reverse)))
|
2000-01-14 14:02:21 +00:00
|
|
|
(group . (1 2))
|
|
|
|
(modes . align-tex-modes)
|
|
|
|
(repeat . t))
|
|
|
|
|
|
|
|
(tex-tabbing-separator
|
2020-12-30 12:06:27 +00:00
|
|
|
(regexp . ,(lambda (end reverse)
|
|
|
|
(align-match-tex-pattern "\\\\[=>]" end reverse)))
|
2000-01-14 14:02:21 +00:00
|
|
|
(group . (1 2))
|
|
|
|
(modes . align-tex-modes)
|
|
|
|
(repeat . t)
|
2020-12-30 12:06:27 +00:00
|
|
|
(run-if . ,(lambda ()
|
|
|
|
(eq major-mode 'latex-mode))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(tex-record-break
|
|
|
|
(regexp . "\\(\\s-*\\)\\\\\\\\")
|
|
|
|
(modes . align-tex-modes))
|
|
|
|
|
2022-04-02 14:36:39 +00:00
|
|
|
;; Align space delimited text as columns.
|
2000-01-14 14:02:21 +00:00
|
|
|
(text-column
|
2005-12-20 13:59:16 +00:00
|
|
|
(regexp . "\\(^\\|\\S-\\)\\([ \t]+\\)\\(\\S-\\|$\\)")
|
2000-01-14 14:02:21 +00:00
|
|
|
(group . 2)
|
|
|
|
(modes . align-text-modes)
|
|
|
|
(repeat . t)
|
2020-12-30 12:06:27 +00:00
|
|
|
(run-if . ,(lambda ()
|
2022-04-02 14:36:39 +00:00
|
|
|
(and (not (eq '- current-prefix-arg))
|
|
|
|
(not (apply #'provided-mode-derived-p
|
|
|
|
major-mode align-tex-modes))))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;; With a negative prefix argument, lists of dollar figures will
|
|
|
|
;; be aligned.
|
|
|
|
(text-dollar-figure
|
|
|
|
(regexp . "\\$?\\(\\s-+[0-9]+\\)\\.")
|
|
|
|
(modes . align-text-modes)
|
|
|
|
(justify . t)
|
2020-12-30 12:06:27 +00:00
|
|
|
(run-if . ,(lambda ()
|
|
|
|
(eq '- current-prefix-arg))))
|
2005-03-08 03:59:54 +00:00
|
|
|
|
|
|
|
(css-declaration
|
2016-04-06 21:05:41 +00:00
|
|
|
(regexp . "^\\s-*\\(?:\\w-?\\)+:\\(\\s-*\\).*;")
|
2005-03-08 03:59:54 +00:00
|
|
|
(group . (1))
|
|
|
|
(modes . '(css-mode html-mode))))
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list describing all of the available alignment rules.
|
2000-01-14 14:02:21 +00:00
|
|
|
The format is:
|
|
|
|
|
|
|
|
((TITLE
|
|
|
|
(ATTRIBUTE . VALUE) ...)
|
|
|
|
...)
|
|
|
|
|
|
|
|
The following attributes are meaningful:
|
|
|
|
|
|
|
|
`regexp' This required attribute must be either a string describing
|
|
|
|
a regular expression, or a function (described below).
|
|
|
|
For every line within the section that this regular
|
|
|
|
expression matches, the given rule will be applied to that
|
|
|
|
line. The exclusion rules denote which part(s) of the
|
|
|
|
line should not be modified; the alignment rules cause the
|
|
|
|
identified whitespace group to be contracted/expanded such
|
|
|
|
that the \"alignment character\" (the character
|
|
|
|
immediately following the identified parenthesis group),
|
|
|
|
occurs in the same column for every line within the
|
|
|
|
alignment section (see `align-region-separate' for a
|
|
|
|
description of how the region is broken up into alignment
|
|
|
|
sections).
|
|
|
|
|
|
|
|
The `regexp' attribute describes how the text should be
|
|
|
|
treated. Within this regexp, there must be at least one
|
|
|
|
group of characters (typically whitespace) identified by
|
|
|
|
the special opening and closing parens used in regexp
|
|
|
|
expressions (`\\\\(' and `\\\\)') (see the Emacs manual on
|
|
|
|
the syntax of regular expressions for more info).
|
|
|
|
|
|
|
|
If `regexp' is a function, it will be called as a
|
|
|
|
replacement for `re-search-forward'. This means that it
|
|
|
|
should return nil if nothing is found to match the rule,
|
|
|
|
or it should set the match data appropriately, move point
|
|
|
|
to the end of the match, and return the value of point.
|
|
|
|
|
|
|
|
`group' For exclusion rules, the group identifies the range of
|
|
|
|
characters that should be ignored. For alignment rules,
|
|
|
|
these are the characters that will be deleted/expanded for
|
|
|
|
the purposes of alignment. The \"alignment character\" is
|
|
|
|
always the first character immediately following this
|
|
|
|
parenthesis group. This attribute may also be a list of
|
2009-03-26 16:21:25 +00:00
|
|
|
integers, in which case multiple alignment characters will
|
|
|
|
be aligned, with the list of integers identifying the
|
2000-01-14 14:02:21 +00:00
|
|
|
whitespace groups which precede them. The default for
|
|
|
|
this attribute is 1.
|
|
|
|
|
|
|
|
`modes' The `modes' attribute, if set, should name a list of
|
|
|
|
major modes -- or evaluate to such a value -- in which the
|
|
|
|
rule is valid. If not set, the rule will apply to all
|
|
|
|
modes.
|
|
|
|
|
|
|
|
`case-fold' If `regexp' is an ordinary regular expression string
|
|
|
|
containing alphabetic character, sometimes you may want
|
|
|
|
the search to proceed case-insensitively (for languages
|
2009-03-26 16:21:25 +00:00
|
|
|
that ignore case, such as Pascal for example). In that
|
2003-05-27 18:38:40 +00:00
|
|
|
case, set `case-fold' to a non-nil value, and the regular
|
|
|
|
expression search will ignore case. If `regexp' is set to
|
|
|
|
a function, that function must handle the job of ignoring
|
2000-01-14 14:02:21 +00:00
|
|
|
case by itself.
|
|
|
|
|
|
|
|
`tab-stop' If the `tab-stop' attribute is set, and non-nil, the
|
|
|
|
alignment character will always fall on a tab stop
|
|
|
|
(whether it uses tabs to get there or not depends on the
|
|
|
|
value of `indent-tabs-mode'). If the `tab-stop' attribute
|
|
|
|
is set to nil, tab stops will never be used. Otherwise,
|
|
|
|
the value of `align-to-tab-stop' determines whether or not
|
|
|
|
to align to a tab stop. The `tab-stop' attribute may also
|
|
|
|
be a list of t or nil values, corresponding to the number
|
|
|
|
of parenthesis groups specified by the `group' attribute.
|
|
|
|
|
|
|
|
`repeat' If the `repeat' attribute is present, and non-nil, the
|
|
|
|
rule will be applied to the line continuously until no
|
|
|
|
further matches are found.
|
|
|
|
|
|
|
|
`valid' If the `valid' attribute is set, it will be used to
|
|
|
|
determine whether the rule should be invoked. This form
|
|
|
|
is evaluated after the regular expression match has been
|
|
|
|
performed, so that it is possible to use the results of
|
|
|
|
that match to determine whether the alignment should be
|
|
|
|
performed. The buffer should not be modified during the
|
|
|
|
evaluation of this form.
|
|
|
|
|
|
|
|
`run-if' Like `valid', the `run-if' attribute tests whether the
|
|
|
|
rule should be run at all -- even before any searches are
|
|
|
|
done to determine if the rule applies to the alignment
|
|
|
|
region. This can save time, since `run-if' will only be
|
|
|
|
run once for each rule. If it returns nil, the rule will
|
|
|
|
not be attempted.
|
|
|
|
|
|
|
|
`column' For alignment rules, if the `column' attribute is set --
|
|
|
|
which must be an integer, or a symbol whose value is an
|
|
|
|
integer -- it will be used as the column in which to align
|
|
|
|
the alignment character. If the text on a particular line
|
|
|
|
happens to overrun that column, a single space character,
|
|
|
|
or tab stop (see `align-to-tab-stop') will be added
|
|
|
|
between the last text character and the alignment
|
|
|
|
character.
|
|
|
|
|
|
|
|
`spacing' Alignment rules may also override the amount of spacing
|
|
|
|
that would normally be used by providing a `spacing'
|
|
|
|
attribute. This must be an integer, or a list of integers
|
|
|
|
corresponding to the number of parenthesis groups matched
|
|
|
|
by the `group' attribute. If a list of value is used, and
|
|
|
|
any of those values is nil, `align-default-spacing' will
|
|
|
|
be used for that subgroup. See `align-default-spacing'
|
|
|
|
for more details on spacing, tab stops, and how to
|
|
|
|
indicate how much spacing should be used. If TAB-STOP is
|
|
|
|
present, it will override the value of `align-to-tab-stop'
|
|
|
|
for that rule.
|
|
|
|
|
|
|
|
`justify' It is possible with `regexp' and `group' to identify a
|
|
|
|
character group that contains more than just whitespace
|
|
|
|
characters. By default, any non-whitespace characters in
|
|
|
|
that group will also be deleted while aligning the
|
|
|
|
alignment character. However, if the `justify' attribute
|
|
|
|
is set to a non-nil value, only the initial whitespace
|
|
|
|
characters within that group will be deleted. This has
|
|
|
|
the effect of right-justifying the characters that remain,
|
|
|
|
and can be used for outdenting or just plain old right-
|
|
|
|
justification.
|
|
|
|
|
|
|
|
`separate' Each rule can define its own section separator, which
|
|
|
|
describes how to identify the separation of \"sections\"
|
|
|
|
within the region to be aligned. Setting the `separate'
|
|
|
|
attribute overrides the value of `align-region-separate'
|
|
|
|
(see the documentation of that variable for possible
|
|
|
|
values), and any separation argument passed to `align'."
|
|
|
|
:type align-rules-list-type
|
2022-07-11 08:33:45 +00:00
|
|
|
:risky t
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
(defvar align-exclude-rules-list-type
|
|
|
|
'(repeat
|
|
|
|
(cons
|
|
|
|
:tag "Exclusion rule"
|
|
|
|
(symbol :tag "Title")
|
|
|
|
(cons :tag "Required attributes"
|
|
|
|
(cons :tag "Regexp"
|
|
|
|
(const :tag "(Regular expression to match)" regexp)
|
|
|
|
(choice :value "\\(\\s-+\\)" regexp function))
|
|
|
|
(repeat
|
|
|
|
:tag "Optional attributes"
|
|
|
|
(choice
|
|
|
|
(cons :tag "Repeat"
|
|
|
|
(const :tag "(Repeat this rule throughout line)"
|
|
|
|
repeat)
|
|
|
|
(boolean :value t))
|
|
|
|
(cons :tag "Paren group"
|
|
|
|
(const :tag "(Parenthesis group to use)" group)
|
|
|
|
(choice :value 2
|
|
|
|
integer (repeat integer)))
|
|
|
|
(cons :tag "Modes"
|
|
|
|
(const :tag "(Modes where this rule applies)" modes)
|
|
|
|
(sexp :value (text-mode)))
|
|
|
|
(cons :tag "Case-fold"
|
|
|
|
(const :tag "(Should case be ignored for this rule)"
|
|
|
|
case-fold)
|
|
|
|
(boolean :value t)))))))
|
|
|
|
"The `type' form for any `align-exclude-rules-list' variable.")
|
|
|
|
|
|
|
|
(defcustom align-exclude-rules-list
|
|
|
|
`((exc-dq-string
|
|
|
|
(regexp . "\"\\([^\"\n]+\\)\"")
|
|
|
|
(repeat . t)
|
|
|
|
(modes . align-dq-string-modes))
|
|
|
|
|
|
|
|
(exc-sq-string
|
|
|
|
(regexp . "'\\([^'\n]+\\)'")
|
|
|
|
(repeat . t)
|
|
|
|
(modes . align-sq-string-modes))
|
|
|
|
|
|
|
|
(exc-open-comment
|
|
|
|
(regexp
|
2020-12-30 12:06:27 +00:00
|
|
|
. ,(lambda (end reverse)
|
|
|
|
(funcall (if reverse 're-search-backward
|
|
|
|
're-search-forward)
|
|
|
|
(concat "[^ \t\n\\]"
|
|
|
|
(regexp-quote comment-start)
|
|
|
|
"\\(.+\\)$") end t)))
|
2000-01-14 14:02:21 +00:00
|
|
|
(modes . align-open-comment-modes))
|
|
|
|
|
|
|
|
(exc-c-comment
|
|
|
|
(regexp . "/\\*\\(.+\\)\\*/")
|
|
|
|
(repeat . t)
|
|
|
|
(modes . align-c++-modes))
|
|
|
|
|
|
|
|
(exc-c-func-params
|
|
|
|
(regexp . "(\\([^)\n]+\\))")
|
|
|
|
(repeat . t)
|
|
|
|
(modes . align-c++-modes))
|
|
|
|
|
|
|
|
(exc-c-macro
|
|
|
|
(regexp . "^\\s-*#\\s-*\\(if\\w*\\|endif\\)\\(.*\\)$")
|
|
|
|
(group . 2)
|
|
|
|
(modes . align-c++-modes)))
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list describing text that should be excluded from alignment.
|
2000-01-14 14:02:21 +00:00
|
|
|
See the documentation for `align-rules-list' for more info."
|
|
|
|
:type align-exclude-rules-list-type
|
2022-07-11 08:33:45 +00:00
|
|
|
:risky t
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
|
|
|
|
|
|
|
;;; Internal Variables:
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 08:55:40 +00:00
|
|
|
(defvar-local align-mode-rules-list nil
|
2000-01-14 14:02:21 +00:00
|
|
|
"Alignment rules specific to the current major mode.
|
|
|
|
See the variable `align-rules-list' for more details.")
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 08:55:40 +00:00
|
|
|
(defvar-local align-mode-exclude-rules-list nil
|
2000-01-14 14:02:21 +00:00
|
|
|
"Alignment exclusion rules specific to the current major mode.
|
|
|
|
See the variable `align-exclude-rules-list' for more details.")
|
|
|
|
|
|
|
|
(defvar align-highlight-overlays nil
|
|
|
|
"The current overlays highlighting the text matched by a rule.")
|
|
|
|
|
2016-02-28 04:45:18 +00:00
|
|
|
(defvar align-regexp-history nil
|
2021-09-14 06:43:18 +00:00
|
|
|
"Input history for the full user-entered regex in `align-regexp'.")
|
2016-02-28 04:45:18 +00:00
|
|
|
|
2019-09-26 10:31:37 +00:00
|
|
|
;; Sample extension rule set for vhdl-mode. This is now obsolete.
|
2000-01-14 14:02:21 +00:00
|
|
|
(defcustom align-vhdl-rules-list
|
|
|
|
`((vhdl-declaration
|
|
|
|
(regexp . "\\(signal\\|variable\\|constant\\)\\(\\s-+\\)\\S-")
|
|
|
|
(group . 2))
|
|
|
|
|
|
|
|
(vhdl-case
|
|
|
|
(regexp . "\\(others\\|[^ \t\n=<]\\)\\(\\s-*\\)=>\\(\\s-*\\)\\S-")
|
|
|
|
(group . (2 3))
|
|
|
|
(valid
|
2020-12-30 12:06:27 +00:00
|
|
|
. ,(lambda ()
|
|
|
|
(not (string= (downcase (match-string 1))
|
|
|
|
"others")))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(vhdl-colon
|
|
|
|
(regexp . "[^ \t\n:]\\(\\s-*\\):\\(\\s-*\\)[^=\n]")
|
|
|
|
(group . (1 2)))
|
|
|
|
|
|
|
|
(direction
|
|
|
|
(regexp . ":\\s-*\\(in\\|out\\|inout\\|buffer\\)\\(\\s-*\\)")
|
|
|
|
(group . 2))
|
|
|
|
|
|
|
|
(sig-assign
|
|
|
|
(regexp . "[^ \t\n=<]\\(\\s-*\\)<=\\(\\s-*\\)\\S-")
|
|
|
|
(group . (1 2)))
|
|
|
|
|
|
|
|
(var-assign
|
|
|
|
(regexp . "[^ \t\n:]\\(\\s-*\\):="))
|
|
|
|
|
|
|
|
(use-entity
|
|
|
|
(regexp . "\\(\\s-+\\)use\\s-+entity")))
|
2008-12-03 05:48:14 +00:00
|
|
|
"Alignment rules for `vhdl-mode'. See `align-rules-list' for more info."
|
2000-01-14 14:02:21 +00:00
|
|
|
:type align-rules-list-type
|
2022-07-11 08:33:45 +00:00
|
|
|
:risky t
|
2000-01-14 14:02:21 +00:00
|
|
|
:group 'align)
|
2019-09-26 10:31:37 +00:00
|
|
|
(make-obsolete-variable 'align-vhdl-rules-list "no longer used." "27.1")
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(defun align-set-vhdl-rules ()
|
|
|
|
"Setup the `align-mode-rules-list' variable for `vhdl-mode'."
|
2019-09-26 10:31:37 +00:00
|
|
|
(declare (obsolete nil "27.1"))
|
2000-01-14 14:02:21 +00:00
|
|
|
(setq align-mode-rules-list align-vhdl-rules-list))
|
|
|
|
|
|
|
|
;;; User Functions:
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align (beg end &optional separate rules exclude-rules)
|
|
|
|
"Attempt to align a region based on a set of alignment rules.
|
2021-10-19 20:39:00 +00:00
|
|
|
Interactively, BEG and END are the mark/point of the current region.
|
|
|
|
|
|
|
|
Many modes define specific alignment rules, and some of these
|
|
|
|
rules in some modes react to the current prefix argument. For
|
2022-07-03 15:35:53 +00:00
|
|
|
instance, in `text-mode', \\`M-x align' will align into columns
|
|
|
|
based on space delimiters, while \\`C-u -' \\`M-x align' will align
|
2021-10-19 20:39:00 +00:00
|
|
|
into columns based on the \"$\" character. See the
|
|
|
|
`align-rules-list' variable definition for the specific rules.
|
|
|
|
|
|
|
|
Also see `align-regexp', which will guide you through various
|
|
|
|
parameters for aligning text.
|
|
|
|
|
|
|
|
Non-interactively, if BEG and END are nil, the beginning and end
|
|
|
|
of the current alignment section will be calculated based on the
|
|
|
|
location of point, and the value of `align-region-separate' (or
|
|
|
|
possibly each rule's `separate' attribute).
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
If SEPARATE is non-nil, it overrides the value of
|
|
|
|
`align-region-separate' for all rules, except those that have their
|
|
|
|
`separate' attribute set.
|
|
|
|
|
|
|
|
RULES and EXCLUDE-RULES, if either is non-nil, will replace the
|
|
|
|
default rule lists defined in `align-rules-list' and
|
|
|
|
`align-exclude-rules-list'. See `align-rules-list' for more details
|
|
|
|
on the format of these lists."
|
|
|
|
(interactive "r")
|
|
|
|
(let ((separator
|
|
|
|
(or separate
|
2000-08-29 00:47:45 +00:00
|
|
|
(if (and (symbolp align-region-separate)
|
|
|
|
(boundp align-region-separate))
|
2000-01-14 14:02:21 +00:00
|
|
|
(symbol-value align-region-separate)
|
|
|
|
align-region-separate)
|
|
|
|
'entire)))
|
|
|
|
(if (not (or ;(eq separator 'largest)
|
|
|
|
(and (functionp separator)
|
|
|
|
(not (funcall separator nil nil)))))
|
|
|
|
(align-region beg end separator
|
|
|
|
(or rules align-mode-rules-list align-rules-list)
|
|
|
|
(or exclude-rules align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list))
|
|
|
|
(let ((sec-first end)
|
|
|
|
(sec-last beg))
|
|
|
|
(align-region beg end
|
|
|
|
separator
|
2016-01-03 16:57:12 +00:00
|
|
|
nil ; rules
|
|
|
|
(or exclude-rules
|
|
|
|
align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list)
|
2016-01-03 16:58:35 +00:00
|
|
|
(lambda (b e mode)
|
|
|
|
(when (consp mode)
|
|
|
|
(setq sec-first (min sec-first b)
|
|
|
|
sec-last (max sec-last e)))))
|
2000-01-14 14:02:21 +00:00
|
|
|
(if (< sec-first sec-last)
|
|
|
|
(align-region sec-first sec-last 'entire
|
|
|
|
(or rules align-mode-rules-list align-rules-list)
|
|
|
|
(or exclude-rules align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list)))))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align-regexp (beg end regexp &optional group spacing repeat)
|
|
|
|
"Align the current region using an ad-hoc rule read from the minibuffer.
|
2013-07-26 02:45:15 +00:00
|
|
|
BEG and END mark the limits of the region. Interactively, this function
|
|
|
|
prompts for the regular expression REGEXP to align with.
|
2000-01-14 14:02:21 +00:00
|
|
|
|
2021-10-19 20:39:00 +00:00
|
|
|
Interactively, if you specify a prefix argument, the function
|
|
|
|
will guide you through entering the full regular expression, and
|
|
|
|
then prompts for which subexpression parenthesis GROUP (default
|
|
|
|
1) within REGEXP to modify, the amount of SPACING (default
|
|
|
|
`align-default-spacing') to use, and whether or not to REPEAT the
|
|
|
|
rule throughout the line.
|
|
|
|
|
|
|
|
See `align-rules-list' for more information about these options.
|
|
|
|
|
2000-01-14 14:02:21 +00:00
|
|
|
For example, let's say you had a list of phone numbers, and wanted to
|
|
|
|
align them so that the opening parentheses would line up:
|
|
|
|
|
|
|
|
Fred (123) 456-7890
|
|
|
|
Alice (123) 456-7890
|
|
|
|
Mary-Anne (123) 456-7890
|
|
|
|
Joe (123) 456-7890
|
|
|
|
|
2021-09-22 22:18:17 +00:00
|
|
|
There is no predefined rule to handle this, but interactively,
|
|
|
|
all you would have to do is to mark the region, call `align-regexp'
|
|
|
|
and enter \"(\".
|
|
|
|
|
|
|
|
REGEXP must contain at least one parenthesized subexpression,
|
|
|
|
typically whitespace of the form \"\\\\(\\\\s-*\\\\)\", but in
|
|
|
|
interactive use, this is automatically added to the start of your
|
|
|
|
regular expression after you enter it. Interactively, you only
|
|
|
|
need to supply the characters to be lined up, and any preceding
|
|
|
|
whitespace is replaced.
|
|
|
|
|
2021-10-19 20:39:00 +00:00
|
|
|
Non-interactively, you must enter the full regular expression,
|
|
|
|
including the subexpression.
|
2013-07-26 02:45:15 +00:00
|
|
|
|
|
|
|
The non-interactive form of the previous example would look something like:
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
(align-regexp (point-min) (point-max) \"\\\\(\\\\s-*\\\\)(\")
|
2013-07-26 02:45:15 +00:00
|
|
|
|
|
|
|
This function is a nothing more than a small wrapper that helps you
|
|
|
|
construct a rule to pass to `align-region', which does the real work."
|
2000-01-14 14:02:21 +00:00
|
|
|
(interactive
|
|
|
|
(append
|
2005-12-10 12:35:04 +00:00
|
|
|
(list (region-beginning) (region-end))
|
2000-01-14 14:02:21 +00:00
|
|
|
(if current-prefix-arg
|
|
|
|
(list (read-string "Complex align using regexp: "
|
2021-10-19 20:39:00 +00:00
|
|
|
"\\(\\s-*\\) " 'align-regexp-history)
|
2005-05-16 11:34:49 +00:00
|
|
|
(string-to-number
|
2000-01-14 14:02:21 +00:00
|
|
|
(read-string
|
|
|
|
"Parenthesis group to modify (justify if negative): " "1"))
|
2005-05-16 11:34:49 +00:00
|
|
|
(string-to-number
|
2000-01-14 14:02:21 +00:00
|
|
|
(read-string "Amount of spacing (or column if negative): "
|
|
|
|
(number-to-string align-default-spacing)))
|
|
|
|
(y-or-n-p "Repeat throughout line? "))
|
|
|
|
(list (concat "\\(\\s-*\\)"
|
|
|
|
(read-string "Align regexp: "))
|
|
|
|
1 align-default-spacing nil))))
|
2010-08-20 07:33:06 +00:00
|
|
|
(or group (setq group 1))
|
|
|
|
(or spacing (setq spacing align-default-spacing))
|
2000-01-14 14:02:21 +00:00
|
|
|
(let ((rule
|
|
|
|
(list (list nil (cons 'regexp regexp)
|
|
|
|
(cons 'group (abs group))
|
|
|
|
(if (< group 0)
|
|
|
|
(cons 'justify t)
|
|
|
|
(cons 'bogus nil))
|
|
|
|
(if (>= spacing 0)
|
|
|
|
(cons 'spacing spacing)
|
|
|
|
(cons 'column (abs spacing)))
|
|
|
|
(cons 'repeat repeat)))))
|
|
|
|
(align-region beg end 'entire rule nil nil)))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align-entire (beg end &optional rules exclude-rules)
|
|
|
|
"Align the selected region as if it were one alignment section.
|
|
|
|
BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES
|
|
|
|
is set to a list of rules (see `align-rules-list'), it can be used to
|
|
|
|
override the default alignment rules that would have been used to
|
|
|
|
align that section."
|
|
|
|
(interactive "r")
|
|
|
|
(align beg end 'entire rules exclude-rules))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align-current (&optional rules exclude-rules)
|
|
|
|
"Call `align' on the current alignment section.
|
|
|
|
This function assumes you want to align only the current section, and
|
|
|
|
so saves you from having to specify the region. If RULES or
|
|
|
|
EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it
|
|
|
|
can be used to override the default alignment rules that would have
|
|
|
|
been used to align that section."
|
|
|
|
(interactive)
|
|
|
|
(align nil nil nil rules exclude-rules))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align-highlight-rule (beg end title &optional rules exclude-rules)
|
|
|
|
"Highlight the whitespace which a given rule would have modified.
|
|
|
|
BEG and END mark the extent of the region. TITLE identifies the rule
|
|
|
|
that should be highlighted. If RULES or EXCLUDE-RULES is set to a
|
|
|
|
list of rules (see `align-rules-list'), it can be used to override the
|
|
|
|
default alignment rules that would have been used to identify the text
|
|
|
|
to be colored."
|
|
|
|
(interactive
|
2005-12-10 12:35:04 +00:00
|
|
|
(list (region-beginning) (region-end)
|
2000-01-14 14:02:21 +00:00
|
|
|
(completing-read
|
|
|
|
"Title of rule to highlight: "
|
|
|
|
(mapcar
|
2020-11-14 16:04:23 +00:00
|
|
|
(lambda (rule)
|
|
|
|
(list (symbol-name (car rule))))
|
2000-01-14 14:02:21 +00:00
|
|
|
(append (or align-mode-rules-list align-rules-list)
|
|
|
|
(or align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list))) nil t)))
|
|
|
|
(let ((ex-rule (assq (intern title)
|
|
|
|
(or align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list)))
|
|
|
|
face)
|
|
|
|
(align-unhighlight-rule)
|
|
|
|
(align-region
|
|
|
|
beg end 'entire
|
|
|
|
(or rules (if ex-rule
|
|
|
|
(or exclude-rules align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list)
|
|
|
|
(or align-mode-rules-list align-rules-list)))
|
|
|
|
(unless ex-rule (or exclude-rules align-mode-exclude-rules-list
|
|
|
|
align-exclude-rules-list))
|
2020-12-30 12:06:27 +00:00
|
|
|
(lambda (b e mode)
|
|
|
|
(if (and mode (listp mode))
|
|
|
|
(if (equal (symbol-name (car mode)) title)
|
|
|
|
(setq face (cons align-highlight-change-face
|
|
|
|
align-highlight-nochange-face))
|
|
|
|
(setq face nil))
|
|
|
|
(when face
|
|
|
|
(let ((overlay (make-overlay b e)))
|
|
|
|
(setq align-highlight-overlays
|
|
|
|
(cons overlay align-highlight-overlays))
|
|
|
|
(overlay-put overlay 'face
|
|
|
|
(if mode
|
|
|
|
(car face)
|
|
|
|
(cdr face))))))))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun align-unhighlight-rule ()
|
|
|
|
"Remove any highlighting that was added by `align-highlight-rule'."
|
|
|
|
(interactive)
|
|
|
|
(while align-highlight-overlays
|
|
|
|
(delete-overlay (car align-highlight-overlays))
|
|
|
|
(setq align-highlight-overlays
|
|
|
|
(cdr align-highlight-overlays))))
|
|
|
|
|
2000-07-17 06:33:36 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun align-newline-and-indent ()
|
2016-04-29 20:14:05 +00:00
|
|
|
"A replacement function for `newline-and-indent', aligning as it goes.
|
|
|
|
The alignment is done by calling `align' on the region that was
|
|
|
|
indented."
|
2000-07-17 06:33:36 +00:00
|
|
|
(interactive)
|
2000-08-29 00:47:45 +00:00
|
|
|
(let ((separate (or (if (and (symbolp align-region-separate)
|
|
|
|
(boundp align-region-separate))
|
2000-07-17 06:33:36 +00:00
|
|
|
(symbol-value align-region-separate)
|
|
|
|
align-region-separate)
|
|
|
|
'entire))
|
|
|
|
(end (point)))
|
|
|
|
(call-interactively 'newline-and-indent)
|
|
|
|
(save-excursion
|
|
|
|
(forward-line -1)
|
|
|
|
(while (not (or (bobp)
|
|
|
|
(align-new-section-p (point) end separate)))
|
|
|
|
(forward-line -1))
|
|
|
|
(align (point) end))))
|
|
|
|
|
2000-01-14 14:02:21 +00:00
|
|
|
;;; Internal Functions:
|
|
|
|
|
|
|
|
(defun align-match-tex-pattern (regexp end &optional reverse)
|
|
|
|
"Match REGEXP in TeX mode, counting backslashes appropriately.
|
|
|
|
END denotes the end of the region to be searched, while REVERSE, if
|
|
|
|
non-nil, indicates that the search should proceed backward from the
|
|
|
|
current position."
|
|
|
|
(let (result)
|
|
|
|
(while
|
|
|
|
(and (setq result
|
|
|
|
(funcall
|
|
|
|
(if reverse 're-search-backward
|
|
|
|
're-search-forward)
|
|
|
|
(concat "\\(\\s-*\\)" regexp
|
|
|
|
"\\(\\s-*\\)") end t))
|
|
|
|
(let ((pos (match-end 1))
|
|
|
|
(count 0))
|
|
|
|
(while (and (> pos (point-min))
|
|
|
|
(eq (char-before pos) ?\\))
|
|
|
|
(setq count (1+ count) pos (1- pos)))
|
|
|
|
(eq (mod count 2) 1))
|
2006-12-14 17:58:40 +00:00
|
|
|
(goto-char (match-beginning (if reverse 1 2)))))
|
2000-01-14 14:02:21 +00:00
|
|
|
result))
|
|
|
|
|
|
|
|
(defun align-new-section-p (beg end separator)
|
|
|
|
"Is there a section divider between BEG and END?
|
|
|
|
SEPARATOR specifies how to look for the section divider. See the
|
|
|
|
documentation for `align-region-separate' for more details."
|
|
|
|
(cond ((or (not separator)
|
|
|
|
(eq separator 'entire))
|
|
|
|
nil)
|
|
|
|
((eq separator 'group)
|
|
|
|
(let ((amount 2))
|
|
|
|
(save-excursion
|
|
|
|
(goto-char end)
|
|
|
|
(if (bolp)
|
|
|
|
(setq amount 1)))
|
|
|
|
(> (count-lines beg end) amount)))
|
|
|
|
((stringp separator)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char beg)
|
|
|
|
(re-search-forward separator end t)))
|
|
|
|
((functionp separator)
|
|
|
|
(funcall separator beg end))
|
|
|
|
((listp separator)
|
|
|
|
(let ((seps separator) yes)
|
|
|
|
(while seps
|
|
|
|
(if (and (>= (car seps) beg)
|
|
|
|
(<= (car seps) end))
|
|
|
|
(setq yes t seps nil)
|
|
|
|
(setq seps (cdr seps))))
|
|
|
|
yes))))
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
(defun align-adjust-col-for-rule (column _rule spacing tab-stop)
|
2000-01-14 14:02:21 +00:00
|
|
|
"Adjust COLUMN according to the given RULE.
|
|
|
|
SPACING specifies how much spacing to use.
|
|
|
|
TAB-STOP specifies whether SPACING refers to tab-stop boundaries."
|
|
|
|
(unless spacing
|
|
|
|
(setq spacing align-default-spacing))
|
|
|
|
(if (<= spacing 0)
|
|
|
|
column
|
|
|
|
(if (not tab-stop)
|
|
|
|
(+ column spacing)
|
2014-06-23 23:09:20 +00:00
|
|
|
(dotimes (_ spacing)
|
|
|
|
(setq column (indent-next-tab-stop column)))
|
2000-01-14 14:02:21 +00:00
|
|
|
column)))
|
|
|
|
|
|
|
|
(defsubst align-column (pos)
|
|
|
|
"Given a position in the buffer, state what column it's in.
|
|
|
|
POS is the position whose column will be taken. Note that this
|
|
|
|
function will change the location of point."
|
|
|
|
(goto-char pos)
|
|
|
|
(current-column))
|
|
|
|
|
|
|
|
(defsubst align-regions (regions props rule func)
|
|
|
|
"Align the regions specified in REGIONS, a list of cons cells.
|
|
|
|
PROPS describes formatting features specific to the given regions.
|
|
|
|
RULE specifies exactly how to perform the alignments.
|
|
|
|
If FUNC is specified, it will be called with each region that would
|
|
|
|
have been aligned, rather than modifying the text."
|
|
|
|
(while regions
|
|
|
|
(save-excursion
|
|
|
|
(align-areas (car regions) (car props) rule func))
|
|
|
|
(setq regions (cdr regions)
|
|
|
|
props (cdr props))))
|
|
|
|
|
|
|
|
(defun align-areas (areas props rule func)
|
|
|
|
"Given a list of AREAS and formatting PROPS, align according to RULE.
|
|
|
|
AREAS should be a list of cons cells containing beginning and ending
|
|
|
|
markers. This function sweeps through all of the beginning markers,
|
|
|
|
finds out which one starts in the furthermost column, and then deletes
|
|
|
|
and inserts text such that all of the ending markers occur in the same
|
|
|
|
column.
|
|
|
|
|
|
|
|
If FUNC is non-nil, it will be called for each text region that would
|
|
|
|
have been aligned. No changes will be made to the buffer."
|
|
|
|
(let* ((column (cdr (assq 'column rule)))
|
|
|
|
(fixed (if (symbolp column)
|
|
|
|
(symbol-value column)
|
|
|
|
column))
|
|
|
|
(justify (cdr (assq 'justify rule)))
|
|
|
|
(col (or fixed 0))
|
|
|
|
(width 0)
|
2011-04-19 13:44:55 +00:00
|
|
|
ecol change)
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
;; Determine the alignment column.
|
|
|
|
(let ((a areas))
|
|
|
|
(while a
|
|
|
|
(unless fixed
|
|
|
|
(setq col (max col (align-column (caar a)))))
|
|
|
|
(unless change
|
|
|
|
(goto-char (cdar a))
|
|
|
|
(if ecol
|
2000-06-07 15:34:14 +00:00
|
|
|
(if (/= ecol (current-column))
|
2000-01-14 14:02:21 +00:00
|
|
|
(setq change t))
|
|
|
|
(setq ecol (current-column))))
|
|
|
|
(when justify
|
|
|
|
(goto-char (caar a))
|
|
|
|
(if (and (re-search-forward "\\s-*" (cdar a) t)
|
2000-06-07 15:34:14 +00:00
|
|
|
(/= (point) (cdar a)))
|
2000-01-14 14:02:21 +00:00
|
|
|
(let ((bcol (current-column)))
|
|
|
|
(setcdr (car a) (cons (point-marker) (cdar a)))
|
|
|
|
(goto-char (cdr (cdar a)))
|
|
|
|
(setq width (max width (- (current-column) bcol))))))
|
|
|
|
(setq a (cdr a))))
|
|
|
|
|
|
|
|
(unless fixed
|
|
|
|
(setq col (+ (align-adjust-col-for-rule
|
|
|
|
col rule (car props) (cdr props)) width)))
|
|
|
|
|
|
|
|
;; Make all ending positions to occur in the goal column. Since
|
|
|
|
;; the whitespace to be modified was already deleted by
|
|
|
|
;; `align-region', all we have to do here is indent.
|
|
|
|
|
|
|
|
(unless change
|
2000-06-07 15:34:14 +00:00
|
|
|
(setq change (and ecol (/= col ecol))))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(when (or func change)
|
|
|
|
(while areas
|
|
|
|
(let ((area (car areas))
|
|
|
|
(gocol col) cur)
|
|
|
|
(when area
|
|
|
|
(if func
|
2012-09-16 16:27:20 +00:00
|
|
|
(funcall func
|
2019-09-18 14:01:56 +00:00
|
|
|
(marker-position (car area))
|
|
|
|
(marker-position (if (and justify
|
|
|
|
(consp (cdr area)))
|
|
|
|
(cadr area)
|
|
|
|
(cdr area)))
|
|
|
|
change)
|
2000-01-14 14:02:21 +00:00
|
|
|
(if (not (and justify
|
|
|
|
(consp (cdr area))))
|
|
|
|
(goto-char (cdr area))
|
|
|
|
(goto-char (cddr area))
|
|
|
|
(let ((ecol (current-column)))
|
|
|
|
(goto-char (cadr area))
|
|
|
|
(setq gocol (- col (- ecol (current-column))))))
|
|
|
|
(setq cur (current-column))
|
|
|
|
(cond ((< gocol 0) t) ; don't do anything
|
|
|
|
((= cur gocol) t) ; don't need to
|
|
|
|
((< cur gocol) ; just add space
|
2004-11-06 12:06:18 +00:00
|
|
|
;; FIXME: It is stated above that "...the
|
|
|
|
;; whitespace to be modified was already
|
|
|
|
;; deleted by `align-region', all we have
|
|
|
|
;; to do here is indent." However, this
|
|
|
|
;; doesn't seem to be true, so we first
|
|
|
|
;; delete the whitespace to avoid tabs
|
|
|
|
;; after spaces.
|
|
|
|
(delete-horizontal-space t)
|
2000-01-14 14:02:21 +00:00
|
|
|
(indent-to gocol))
|
|
|
|
(t
|
|
|
|
;; This code works around an oddity in the
|
|
|
|
;; FORCE argument of `move-to-column', which
|
|
|
|
;; tends to screw up markers if there is any
|
|
|
|
;; tabbing.
|
|
|
|
(let ((endcol (align-column
|
|
|
|
(if (and justify
|
|
|
|
(consp (cdr area)))
|
|
|
|
(cadr area)
|
|
|
|
(cdr area))))
|
|
|
|
(abuts (<= gocol
|
|
|
|
(align-column (car area)))))
|
|
|
|
(if abuts
|
|
|
|
(goto-char (car area))
|
|
|
|
(move-to-column gocol t))
|
|
|
|
(let ((here (point)))
|
|
|
|
(move-to-column endcol t)
|
|
|
|
(delete-region here (point))
|
|
|
|
(if abuts
|
|
|
|
(indent-to (align-adjust-col-for-rule
|
|
|
|
(current-column) rule
|
|
|
|
(car props) (cdr props)))))))))))
|
|
|
|
(setq areas (cdr areas))))))
|
|
|
|
|
2011-11-29 20:21:28 +00:00
|
|
|
(defmacro align--set-marker (marker-var pos &optional type)
|
2011-12-05 02:47:53 +00:00
|
|
|
"If MARKER-VAR is a marker, move it to position POS.
|
|
|
|
Otherwise, create a new marker at position POS, with type TYPE."
|
|
|
|
`(if (markerp ,marker-var)
|
2011-11-29 20:21:28 +00:00
|
|
|
(move-marker ,marker-var ,pos)
|
|
|
|
(setq ,marker-var (copy-marker ,pos ,type))))
|
|
|
|
|
2000-01-14 14:02:21 +00:00
|
|
|
(defun align-region (beg end separate rules exclude-rules
|
|
|
|
&optional func)
|
|
|
|
"Align a region based on a given set of alignment rules.
|
|
|
|
BEG and END specify the region to be aligned. Either may be nil, in
|
|
|
|
which case the range will stop at the nearest section division (see
|
|
|
|
`align-region-separate', and `align-region-heuristic' for more
|
|
|
|
information').
|
|
|
|
|
|
|
|
The region will be divided into separate alignment sections based on
|
|
|
|
the value of SEPARATE.
|
|
|
|
|
|
|
|
RULES and EXCLUDE-RULES are a pair of lists describing how to align
|
|
|
|
the region, and which text areas within it should be excluded from
|
|
|
|
alignment. See the `align-rules-list' for more information on the
|
|
|
|
required format of these two lists.
|
|
|
|
|
|
|
|
If FUNC is specified, no text will be modified. What `align-region'
|
|
|
|
will do with the rules is to search for the alignment areas, as it
|
|
|
|
regularly would, taking account for exclusions, and then call FUNC,
|
|
|
|
first with the beginning and ending of the region to be aligned
|
|
|
|
according to that rule (this can be different for each rule, if BEG
|
|
|
|
and END were nil), and then with the beginning and ending of each
|
|
|
|
text region that the rule would have applied to.
|
|
|
|
|
|
|
|
The signature of FUNC should thus be:
|
|
|
|
|
|
|
|
(defun my-align-function (beg end mode)
|
|
|
|
\"If MODE is a rule (a list), return t if BEG to END are to be searched.
|
|
|
|
Otherwise BEG to END will be a region of text that matches the rule's
|
|
|
|
definition, and MODE will be non-nil if any changes are necessary.\"
|
|
|
|
(unless (and mode (listp mode))
|
|
|
|
(message \"Would have aligned from %d to %d...\" beg end)))
|
|
|
|
|
|
|
|
This feature (of passing a FUNC) is used internally to locate the
|
|
|
|
position of exclusion areas, but could also be used for any other
|
|
|
|
purpose where you might want to know where the regions that the
|
|
|
|
aligner would have dealt with are."
|
|
|
|
(let ((end-mark (and end (copy-marker end t)))
|
|
|
|
(real-beg beg)
|
|
|
|
(report (and (not func) align-large-region beg end
|
|
|
|
(>= (- end beg) align-large-region)))
|
|
|
|
(rule-index 1)
|
2012-08-09 07:34:53 +00:00
|
|
|
(rule-count (length rules))
|
|
|
|
markers)
|
2000-01-14 14:02:21 +00:00
|
|
|
(if (and align-indent-before-aligning real-beg end-mark)
|
|
|
|
(indent-region real-beg end-mark nil))
|
|
|
|
(while rules
|
|
|
|
(let* ((rule (car rules))
|
|
|
|
(run-if (assq 'run-if rule))
|
|
|
|
(modes (assq 'modes rule)))
|
|
|
|
;; unless the `run-if' form tells us not to, look for the
|
|
|
|
;; rule..
|
2017-04-08 15:27:17 +00:00
|
|
|
(unless (or (and modes (not (apply #'derived-mode-p (eval (cdr modes)))))
|
2000-01-14 14:02:21 +00:00
|
|
|
(and run-if (not (funcall (cdr run-if)))))
|
2013-08-20 22:13:29 +00:00
|
|
|
(let* ((case-fold-search case-fold-search)
|
2000-01-14 14:02:21 +00:00
|
|
|
(case-fold (assq 'case-fold rule))
|
|
|
|
(regexp (cdr (assq 'regexp rule)))
|
|
|
|
(regfunc (and (functionp regexp) regexp))
|
|
|
|
(rulesep (assq 'separate rule))
|
|
|
|
(thissep (if rulesep (cdr rulesep) separate))
|
|
|
|
same (eol 0)
|
2009-01-24 23:42:42 +00:00
|
|
|
search-start
|
2021-03-11 18:29:14 +00:00
|
|
|
groups ;; group-c
|
2000-01-14 14:02:21 +00:00
|
|
|
spacing spacing-c
|
|
|
|
tab-stop tab-stop-c
|
|
|
|
repeat repeat-c
|
|
|
|
valid valid-c
|
2011-04-19 13:44:55 +00:00
|
|
|
first
|
2000-01-14 14:02:21 +00:00
|
|
|
regions index
|
2012-08-09 07:34:53 +00:00
|
|
|
last-point
|
2000-01-14 14:02:21 +00:00
|
|
|
save-match-data
|
|
|
|
exclude-p
|
|
|
|
align-props)
|
|
|
|
(save-excursion
|
|
|
|
;; if beg and end were not given, figure out what the
|
|
|
|
;; current alignment region should be. Depending on the
|
|
|
|
;; value of `align-region-separate' it's possible for
|
|
|
|
;; each rule to have its own definition of what that
|
|
|
|
;; current alignment section is.
|
|
|
|
(if real-beg
|
|
|
|
(goto-char beg)
|
|
|
|
(if (or (not thissep) (eq thissep 'entire))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(error "Cannot determine alignment region for `%s'"
|
2000-01-14 14:02:21 +00:00
|
|
|
(symbol-name (cdr (assq 'title rule)))))
|
|
|
|
(beginning-of-line)
|
|
|
|
(while (and (not (eobp))
|
|
|
|
(looking-at "^\\s-*$"))
|
|
|
|
(forward-line))
|
|
|
|
(let* ((here (point))
|
|
|
|
(start here))
|
|
|
|
(while (and here
|
|
|
|
(let ((terminus
|
|
|
|
(and align-region-heuristic
|
|
|
|
(- (point)
|
|
|
|
align-region-heuristic))))
|
|
|
|
(if regfunc
|
|
|
|
(funcall regfunc terminus t)
|
|
|
|
(re-search-backward regexp
|
|
|
|
terminus t))))
|
|
|
|
(if (align-new-section-p (point) here thissep)
|
|
|
|
(setq beg here
|
|
|
|
here nil)
|
|
|
|
(setq here (point))))
|
|
|
|
(if (not here)
|
|
|
|
(goto-char beg))
|
|
|
|
(beginning-of-line)
|
|
|
|
(setq beg (point))
|
|
|
|
(goto-char start)
|
|
|
|
(setq here (point))
|
|
|
|
(while (and here
|
|
|
|
(let ((terminus
|
|
|
|
(and align-region-heuristic
|
|
|
|
(+ (point)
|
|
|
|
align-region-heuristic))))
|
|
|
|
(if regfunc
|
|
|
|
(funcall regfunc terminus nil)
|
|
|
|
(re-search-forward regexp terminus t))))
|
|
|
|
(if (align-new-section-p here (point) thissep)
|
|
|
|
(setq end here
|
|
|
|
here nil)
|
|
|
|
(setq here (point))))
|
|
|
|
(if (not here)
|
|
|
|
(goto-char end))
|
|
|
|
(forward-line)
|
2011-11-29 20:21:28 +00:00
|
|
|
(setq end (point))
|
|
|
|
(align--set-marker end-mark end t)
|
2000-01-14 14:02:21 +00:00
|
|
|
(goto-char beg)))
|
|
|
|
|
|
|
|
;; If we have a region to align, and `func' is set and
|
|
|
|
;; reports back that the region is ok, then align it.
|
|
|
|
(when (or (not func)
|
|
|
|
(funcall func beg end rule))
|
2013-08-20 22:13:29 +00:00
|
|
|
(let (rule-beg exclude-areas)
|
|
|
|
;; determine first of all where the exclusions
|
|
|
|
;; lie in this region
|
|
|
|
(when exclude-rules
|
|
|
|
(align-region
|
|
|
|
beg end 'entire
|
|
|
|
exclude-rules nil
|
|
|
|
(lambda (b e mode)
|
|
|
|
(or (and mode (listp mode))
|
|
|
|
(setq exclude-areas
|
|
|
|
(cons (cons b e)
|
|
|
|
exclude-areas)))))
|
|
|
|
(setq exclude-areas
|
|
|
|
(nreverse
|
|
|
|
(sort exclude-areas #'car-less-than-car))))
|
|
|
|
|
|
|
|
;; set `case-fold-search' according to the
|
|
|
|
;; (optional) `case-fold' property
|
|
|
|
(and case-fold
|
|
|
|
(setq case-fold-search (cdr case-fold)))
|
|
|
|
|
|
|
|
;; while we can find the rule in the alignment
|
|
|
|
;; region..
|
|
|
|
(while (and (< (point) end-mark)
|
|
|
|
(setq search-start (point))
|
|
|
|
(if regfunc
|
|
|
|
(funcall regfunc end-mark nil)
|
|
|
|
(re-search-forward regexp
|
|
|
|
end-mark t)))
|
|
|
|
|
|
|
|
;; give the user some indication of where we
|
|
|
|
;; are, if it's a very large region being
|
|
|
|
;; aligned
|
|
|
|
(if report
|
|
|
|
(let ((symbol (car rule)))
|
|
|
|
(if (and symbol (symbolp symbol))
|
|
|
|
(message
|
|
|
|
"Aligning `%s' (rule %d of %d) %d%%..."
|
|
|
|
(symbol-name symbol) rule-index rule-count
|
2015-07-31 17:12:37 +00:00
|
|
|
(floor (* (- (point) real-beg) 100.0)
|
|
|
|
(- end-mark real-beg)))
|
2013-08-20 22:13:29 +00:00
|
|
|
(message
|
|
|
|
"Aligning %d%%..."
|
2015-07-31 17:12:37 +00:00
|
|
|
(floor (* (- (point) real-beg) 100.0)
|
|
|
|
(- end-mark real-beg))))))
|
2013-08-20 22:13:29 +00:00
|
|
|
|
|
|
|
;; if the search ended us on the beginning of
|
|
|
|
;; the next line, move back to the end of the
|
|
|
|
;; previous line.
|
|
|
|
(if (and (bolp) (> (point) search-start))
|
|
|
|
(forward-char -1))
|
|
|
|
|
|
|
|
;; lookup the `group' attribute the first time
|
|
|
|
;; that we need it
|
2021-03-11 18:29:14 +00:00
|
|
|
(unless nil ;; group-c
|
2013-08-20 22:13:29 +00:00
|
|
|
(setq groups (or (cdr (assq 'group rule)) 1))
|
|
|
|
(unless (listp groups)
|
|
|
|
(setq groups (list groups)))
|
|
|
|
(setq first (car groups)))
|
|
|
|
|
|
|
|
(unless spacing-c
|
|
|
|
(setq spacing (cdr (assq 'spacing rule))
|
|
|
|
spacing-c t))
|
|
|
|
|
|
|
|
(unless tab-stop-c
|
|
|
|
(setq tab-stop
|
|
|
|
(let ((rule-ts (assq 'tab-stop rule)))
|
|
|
|
(cond (rule-ts
|
|
|
|
(cdr rule-ts))
|
|
|
|
((symbolp align-to-tab-stop)
|
|
|
|
(symbol-value align-to-tab-stop))
|
|
|
|
(t
|
|
|
|
align-to-tab-stop)))
|
|
|
|
tab-stop-c t))
|
|
|
|
|
|
|
|
;; test whether we have found a match on the same
|
|
|
|
;; line as a previous match
|
|
|
|
(when (> (point) eol)
|
|
|
|
(setq same nil)
|
|
|
|
(align--set-marker eol (line-end-position)))
|
|
|
|
|
|
|
|
;; lookup the `repeat' attribute the first time
|
|
|
|
(or repeat-c
|
|
|
|
(setq repeat (cdr (assq 'repeat rule))
|
|
|
|
repeat-c t))
|
|
|
|
|
|
|
|
;; lookup the `valid' attribute the first time
|
|
|
|
(or valid-c
|
|
|
|
(setq valid (assq 'valid rule)
|
|
|
|
valid-c t))
|
|
|
|
|
|
|
|
;; remember the beginning position of this rule
|
|
|
|
;; match, and save the match-data, since either
|
|
|
|
;; the `valid' form, or the code that searches for
|
|
|
|
;; section separation, might alter it
|
|
|
|
(setq rule-beg (match-beginning first)
|
|
|
|
save-match-data (match-data))
|
|
|
|
|
|
|
|
(or rule-beg
|
|
|
|
(error "No match for subexpression %s" first))
|
|
|
|
|
|
|
|
;; unless the `valid' attribute is set, and tells
|
|
|
|
;; us that the rule is not valid at this point in
|
|
|
|
;; the code..
|
|
|
|
(unless (and valid (not (funcall (cdr valid))))
|
|
|
|
|
|
|
|
;; look to see if this match begins a new
|
|
|
|
;; section. If so, we should align what we've
|
|
|
|
;; collected so far, and then begin collecting
|
|
|
|
;; anew for the next alignment section
|
|
|
|
(when (and last-point
|
|
|
|
(align-new-section-p last-point rule-beg
|
|
|
|
thissep))
|
|
|
|
(align-regions regions align-props rule func)
|
|
|
|
(setq regions nil)
|
|
|
|
(setq align-props nil))
|
|
|
|
(align--set-marker last-point rule-beg t)
|
|
|
|
|
|
|
|
;; restore the match data
|
|
|
|
(set-match-data save-match-data)
|
|
|
|
|
|
|
|
;; check whether the region to be aligned
|
|
|
|
;; straddles an exclusion area
|
|
|
|
(let ((excls exclude-areas))
|
|
|
|
(setq exclude-p nil)
|
|
|
|
(while excls
|
|
|
|
(if (and (< (match-beginning (car groups))
|
|
|
|
(cdar excls))
|
|
|
|
(> (match-end (car (last groups)))
|
|
|
|
(caar excls)))
|
|
|
|
(setq exclude-p t
|
|
|
|
excls nil)
|
|
|
|
(setq excls (cdr excls)))))
|
|
|
|
|
|
|
|
;; go through the parenthesis groups
|
|
|
|
;; matching whitespace to be contracted or
|
|
|
|
;; expanded (or possibly justified, if the
|
|
|
|
;; `justify' attribute was set)
|
|
|
|
(unless exclude-p
|
|
|
|
(dolist (g groups)
|
|
|
|
;; We must use markers, since
|
|
|
|
;; `align-areas' may modify the buffer.
|
|
|
|
;; Avoid polluting the markers.
|
|
|
|
(let* ((group-beg (copy-marker
|
|
|
|
(match-beginning g) t))
|
|
|
|
(group-end (copy-marker
|
|
|
|
(match-end g) t))
|
|
|
|
(region (cons group-beg group-end))
|
|
|
|
(props (cons (if (listp spacing)
|
|
|
|
(car spacing)
|
|
|
|
spacing)
|
|
|
|
(if (listp tab-stop)
|
|
|
|
(car tab-stop)
|
|
|
|
tab-stop))))
|
|
|
|
(push group-beg markers)
|
|
|
|
(push group-end markers)
|
|
|
|
(setq index (if same (1+ index) 0))
|
|
|
|
(cond
|
|
|
|
((nth index regions)
|
|
|
|
(setcar (nthcdr index regions)
|
|
|
|
(cons region
|
|
|
|
(nth index regions))))
|
|
|
|
(regions
|
|
|
|
(nconc regions
|
|
|
|
(list (list region)))
|
|
|
|
(nconc align-props (list props)))
|
|
|
|
(t
|
|
|
|
(setq regions
|
|
|
|
(list (list region)))
|
|
|
|
(setq align-props (list props)))))
|
|
|
|
;; If any further rule matches are found
|
|
|
|
;; before `eol', they are on the same
|
|
|
|
;; line as this one; this can only
|
|
|
|
;; happen if the `repeat' attribute is
|
|
|
|
;; non-nil.
|
|
|
|
(if (listp spacing)
|
|
|
|
(setq spacing (cdr spacing)))
|
|
|
|
(if (listp tab-stop)
|
|
|
|
(setq tab-stop (cdr tab-stop)))
|
|
|
|
(setq same t))
|
|
|
|
|
|
|
|
;; if `repeat' has not been set, move to
|
|
|
|
;; the next line; don't bother searching
|
|
|
|
;; anymore on this one
|
|
|
|
(if (and (not repeat) (not (bolp)))
|
|
|
|
(forward-line))
|
|
|
|
|
|
|
|
;; if the search did not change point,
|
|
|
|
;; move forward to avoid an infinite loop
|
|
|
|
(if (= (point) search-start)
|
|
|
|
(forward-char)))))
|
|
|
|
|
|
|
|
;; when they are no more matches for this rule,
|
|
|
|
;; align whatever was left over
|
|
|
|
(if regions
|
|
|
|
(align-regions regions align-props rule func))))))))
|
2000-01-14 14:02:21 +00:00
|
|
|
(setq rules (cdr rules)
|
|
|
|
rule-index (1+ rule-index)))
|
2012-08-09 07:34:53 +00:00
|
|
|
;; This function can use a lot of temporary markers, so instead of
|
|
|
|
;; waiting for the next GC we delete them immediately (Bug#10047).
|
2014-03-24 16:54:24 +00:00
|
|
|
(when end-mark (set-marker end-mark nil))
|
2012-08-09 07:34:53 +00:00
|
|
|
(dolist (m markers)
|
|
|
|
(set-marker m nil))
|
2000-01-14 14:02:21 +00:00
|
|
|
|
|
|
|
(if report
|
|
|
|
(message "Aligning...done"))))
|
|
|
|
|
|
|
|
(provide 'align)
|
|
|
|
|
|
|
|
(run-hooks 'align-load-hook)
|
|
|
|
|
|
|
|
;;; align.el ends here
|