Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3c4c8064
Commit
3c4c8064
authored
Jan 14, 2000
by
Gerd Moellmann
Browse files
*** empty log message ***
parent
33a6685b
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1625 additions
and
1 deletion
+1625
-1
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/align.el
lisp/align.el
+1547
-0
lisp/cus-load.el
lisp/cus-load.el
+2
-1
lisp/loaddefs.el
lisp/loaddefs.el
+74
-0
No files found.
lisp/ChangeLog
View file @
3c4c8064
2000-01-14 Gerd Moellmann <gerd@gnu.org>
* align.el: New file.
* menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
* net/eudc.el (toplevel): Define EUDC menu for Emacs.
...
...
lisp/align.el
0 → 100644
View file @
3c4c8064
This diff is collapsed.
Click to expand it.
lisp/cus-load.el
View file @
3c4c8064
...
...
@@ -173,6 +173,7 @@
(
put
'vip
'custom-loads
'
(
"vip"
))
(
put
'smerge
'custom-loads
'
(
"smerge-mode"
))
(
put
'spell
'custom-loads
'
(
"spell"
))
(
put
'align
'custom-loads
'
(
"align"
))
(
put
'rmail-headers
'custom-loads
'
(
"rmail"
))
(
put
'gnus-score-decay
'custom-loads
'
(
"gnus-score"
))
(
put
'idlwave-shell-initial-commands
'custom-loads
'
(
"idlw-shell"
))
...
...
@@ -436,7 +437,7 @@
(
put
'customize
'custom-loads
'
(
"wid-edit"
"cus-edit"
))
(
put
'dired
'custom-loads
'
(
"files"
"dired-aux"
"dired-x"
"dired"
"find-dired"
))
(
put
'recentf
'custom-loads
'
(
"recentf"
))
(
put
'fill
'custom-loads
'
(
"simple"
"fill"
))
(
put
'fill
'custom-loads
'
(
"simple"
"fill"
"align"
))
(
put
'ps-print-header
'custom-loads
'
(
"ps-print"
))
(
put
'outlines
'custom-loads
'
(
"allout"
"outline"
))
(
put
'paragraphs
'custom-loads
'
(
"paragraphs"
))
...
...
lisp/loaddefs.el
View file @
3c4c8064
...
...
@@ -304,6 +304,80 @@ during preloading.
See Info node `(elisp)Advising Functions' for comprehensive documentation." nil (quote macro))
;;;***
;;;### (autoloads (align-unhighlight-rule align-highlight-rule align-current
;;;;;; align-entire align-regexp align) "align" "align.el" (14463
;;;;;; 7197))
;;; Generated autoloads from align.el
(autoload (quote align) "align" "\
Attempt to align a region based on a set of alignment rules.
BEG and END mark the region. If BEG and END are specifically set to
nil (this can only be done programmatically), 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).
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." t nil)
(autoload (quote align-regexp) "align" "\
Align the current region using an ad-hoc rule read from the minibuffer.
BEG and END mark the limits of the region. This function will prompt
for the REGEXP to align with. If no prefix arg was specified, you
only need to supply the characters to be lined up and any preceding
whitespace is replaced. If a prefix arg was specified, the full
regexp with parenthesized whitespace should be supplied; it will also
prompt for which parenthesis GROUP within REGEXP to modify, the amount
of SPACING to use, and whether or not to REPEAT the rule throughout
the line. See `align-rules-list' for more information about these
options.
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
There is no predefined rule to handle this, but you could easily do it
using a REGEXP like \"(\". All you would have to do is to mark the
region, call `align-regexp' and type in that regular expression." t nil)
(autoload (quote align-entire) "align" "\
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." t nil)
(autoload (quote align-current) "align" "\
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." t nil)
(autoload (quote align-highlight-rule) "align" "\
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." t nil)
(autoload (quote align-unhighlight-rule) "align" "\
Remove any highlighting that was added by `align-highlight-rule'." t nil)
;;;***
;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment