comparison etc/NEWS @ 25949:f52051afc40a

*** empty log message ***
author Phillip Rulon <pjr@gnu.org>
date Sat, 09 Oct 1999 01:22:21 +0000
parents a955ea8f6b15
children b3f0ced6423b
comparison
equal deleted inserted replaced
25948:ce46ba443d45 25949:f52051afc40a
5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org. 5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
6 For older news, see the file ONEWS. 6 For older news, see the file ONEWS.
7 7
8 8
9 * Changes in Emacs 21.1 9 * Changes in Emacs 21.1
10
11 * New packages
12
13 ** delim-col
14
15 Helps to prettify columns in a text region or rectangle.
16
17 Here is an example of columns:
18
19 horse apple bus
20 dog pineapple car EXTRA
21 porcupine strawberry airplane
22
23 Doing the following settings:
24
25 (setq delimit-columns-str-before "[ ")
26 (setq delimit-columns-str-after " ]")
27 (setq delimit-columns-str-separator ", ")
28 (setq delimit-columns-separator "\t")
29
30
31 Selecting the lines above and typing:
32
33 M-x delimit-columns-region
34
35 It results:
36
37 [ horse , apple , bus , ]
38 [ dog , pineapple , car , EXTRA ]
39 [ porcupine, strawberry, airplane, ]
40
41 delim-col has the following options:
42
43 delimit-columns-str-before Specify a string to be inserted
44 before all columns.
45
46 delimit-columns-str-separator Specify a string to be inserted
47 between each column.
48
49 delimit-columns-str-after Specify a string to be inserted
50 after all columns.
51
52 delimit-columns-separator Specify a regexp which separates
53 each column.
54
55 delim-col has the following commands:
56
57 delimit-columns-region Prettify all columns in a text region.
58 delimit-columns-rectangle Prettify all columns in a text rectangle.
10 59
11 ** Faces and frame parameters. 60 ** Faces and frame parameters.
12 61
13 There are four new faces `scroll-bar', `border', `cursor' and `mouse'. 62 There are four new faces `scroll-bar', `border', `cursor' and `mouse'.
14 Setting the frame parameters `scroll-bar-foreground' and 63 Setting the frame parameters `scroll-bar-foreground' and