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
d177c583
Commit
d177c583
authored
Oct 09, 1999
by
Phillip Rulon
Browse files
*** empty log message ***
parent
330bd7c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
0 deletions
+58
-0
etc/NEWS
etc/NEWS
+49
-0
lisp/ChangeLog
lisp/ChangeLog
+4
-0
src/ChangeLog
src/ChangeLog
+5
-0
No files found.
etc/NEWS
View file @
d177c583
...
...
@@ -8,6 +8,55 @@ For older news, see the file ONEWS.
*
Changes in Emacs 21.1
* New packages
** delim-col
Helps to prettify columns in a text region or rectangle.
Here is an example of columns:
horse apple bus
dog pineapple car EXTRA
porcupine strawberry airplane
Doing the following settings:
(setq delimit-columns-str-before "[ ")
(setq delimit-columns-str-after " ]")
(setq delimit-columns-str-separator ", ")
(setq delimit-columns-separator "\t")
Selecting the lines above and typing:
M-x delimit-columns-region
It results:
[ horse , apple , bus , ]
[
dog , pineapple , car , EXTRA ]
[
porcupine, strawberry, airplane, ]
delim-col has the following options:
delimit-columns-str-before Specify a string to be inserted
before all columns.
delimit-columns-str-separator Specify a string to be inserted
between each column.
delimit-columns-str-after Specify a string to be inserted
after all columns.
delimit-columns-separator Specify a regexp which separates
each column.
delim-col has the following commands:
delimit-columns-region Prettify all columns in a text region.
delimit-columns-rectangle Prettify all columns in a text rectangle.
** Faces and frame parameters.
There are four new faces `scroll-bar', `border', `cursor' and `mouse'.
...
...
lisp/ChangeLog
View file @
d177c583
...
...
@@ -147,6 +147,10 @@
(custom-variable-reset-standard, custom-face-set)
(custom-face-save): Use it.
1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* hexl.el (hexl-mode): Do nothing if already in hexl mode.
1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* faces.el (region): Doc fix.
...
...
src/ChangeLog
View file @
d177c583
No preview for this file type
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