1 ;;; delim-col.el --- prettify all columns in a region or rectangle
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
10 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; delim-col helps to prettify columns in a text region or rectangle.
31 ;; To use it, make sure that this file is in load-path and insert in your
34 ;; (require 'delim-col)
36 ;; If you have, for example, the following columns:
43 ;; And the following settings:
45 ;; (setq delimit-columns-str-before "[ ")
46 ;; (setq delimit-columns-str-after " ]")
47 ;; (setq delimit-columns-str-separator ", ")
48 ;; (setq delimit-columns-before "")
49 ;; (setq delimit-columns-after "")
50 ;; (setq delimit-columns-separator "\t")
51 ;; (setq delimit-columns-format 'separator)
52 ;; (setq delimit-columns-extra t)
54 ;; If you select the lines above and type:
56 ;; M-x delimit-columns-region RET
58 ;; You obtain the following result:
61 ;; [ aaaa, bb , ccc , ddddd ]
62 ;; [ aaa , bbb, cccc , dddd ]
63 ;; [ aa , bb , ccccccc, ddd ]
65 ;; But if you select start from the very first b to the very last c and type:
67 ;; M-x delimit-columns-rectangle RET
69 ;; You obtain the following result:
72 ;; aaaa [ bb , ccc ] ddddd
73 ;; aaa [ bbb, cccc ] dddd
74 ;; aa [ bb , ccccccc ] ddd
76 ;; Now, if we change settings to:
78 ;; (setq delimit-columns-before "<")
79 ;; (setq delimit-columns-after ">")
81 ;; For the `delimit-columns-region' example above, the result is:
83 ;; [ <a> , <b> , <c> , <d> ]
84 ;; [ <aaaa>, <bb> , <ccc> , <ddddd> ]
85 ;; [ <aaa> , <bbb>, <cccc> , <dddd> ]
86 ;; [ <aa> , <bb> , <ccccccc>, <ddd> ]
88 ;; And for the `delimit-columns-rectangle' example above, the result is:
91 ;; aaaa [ <bb> , <ccc> ] ddddd
92 ;; aaa [ <bbb>, <cccc> ] dddd
93 ;; aa [ <bb> , <ccccccc> ] ddd
95 ;; Note that `delimit-columns-region' operates over all text region
96 ;; selected, extending the region start to the beginning of line and the
97 ;; region end to the end of line. While `delimit-columns-rectangle'
98 ;; operates over the text rectangle selected which rectangle diagonal is
99 ;; given by the region start and end.
101 ;; See `delimit-columns-format' variable documentation for column formating.
103 ;; `delimit-columns-region' is useful when you have columns of text that
104 ;; are not well aligned, like:
108 ;; porcupine strawberry airplane
110 ;; `delimit-columns-region' and `delimit-columns-rectangle' handle lines
111 ;; with different number of columns, like:
114 ;; dog pineapple car EXTRA
115 ;; porcupine strawberry airplane
117 ;; Use `delimit-columns-customize' to customize delim-col package variables.
122 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
125 (defgroup columns nil
127 :link
'(emacs-library-link :tag
"Source Lisp File" "delim-col.el")
128 :prefix
"delimit-columns-"
131 (defcustom delimit-columns-str-before
""
132 "Specify a string to be inserted before all columns."
133 :type
'(string :tag
"Before All Columns")
136 (defcustom delimit-columns-str-separator
", "
137 "Specify a string to be inserted between each column."
138 :type
'(string :tag
"Between Each Column")
141 (defcustom delimit-columns-str-after
""
142 "Specify a string to be inserted after all columns."
143 :type
'(string :tag
"After All Columns")
146 (defcustom delimit-columns-before
""
147 "Specify a string to be inserted before each column."
148 :type
'(string :tag
"Before Each Column")
151 (defcustom delimit-columns-after
""
152 "Specify a string to be inserted after each column."
153 :type
'(string :tag
"After Each Column")
156 (defcustom delimit-columns-separator
"\t"
157 "Specify a regexp which separates each column."
158 :type
'(regexp :tag
"Column Separator")
161 (defcustom delimit-columns-format t
162 "Specify how to format columns.
164 For examples below, consider:
166 + columns `ccc' and `dddd',
167 + the maximum column length for each column is 6,
168 + and the following settings:
169 (setq delimit-columns-before \"<\")
170 (setq delimit-columns-after \">\")
171 (setq delimit-columns-separator \":\")
175 nil no formating. That is, `delimit-columns-after' is followed by
176 `delimit-columns-separator'.
177 For example, the result is: \"<ccc>:<dddd>:\"
179 t align columns. That is, `delimit-columns-after' is followed by
180 `delimit-columns-separator' and then followed by spaces.
181 For example, the result is: \"<ccc>: <dddd>: \"
183 'separator align separators. That is, `delimit-columns-after' is followed
184 by spaces and then followed by `delimit-columns-separator'.
185 For example, the result is: \"<ccc> :<dddd> :\"
187 'padding format column by filling with spaces before
188 `delimit-columns-after'. That is, spaces are followed by
189 `delimit-columns-after' and then followed by
190 `delimit-columns-separator'.
191 For example, the result is: \"<ccc >:<dddd >:\"
193 Any other value is treated as t."
194 :type
'(choice :menu-tag
"Column Formating"
195 :tag
"Column Formating"
196 (const :tag
"No Formating" nil
)
197 (const :tag
"Column Alignment" t
)
198 (const :tag
"Separator Aligment" separator
)
199 (const :tag
"Column Padding" padding
))
202 (defcustom delimit-columns-extra t
203 "Non-nil means that lines will have the same number of columns.
205 This has effect only when there are lines with different number of columns."
206 :type
'(boolean :tag
"Lines With Same Number Of Column")
209 (defcustom delimit-columns-start
0
210 "Specify column number to start prettifing.
212 See also `delimit-columns-end' for documentation.
214 The following relation must hold:
215 0 <= delimit-columns-start <= delimit-columns-end
217 The column number start from 0 and it's relative to the beginning of selected
218 region. So if you selected a text region, the first column (column 0) is
219 located at beginning of line. If you selected a text rectangle, the first
220 column (column 0) is located at left corner."
221 :type
'(integer :tag
"Column Start")
224 (defcustom delimit-columns-end
1000000
225 "Specify column number to end prettifing.
227 See also `delimit-columns-start' for documentation.
229 The following relation must hold:
230 0 <= delimit-columns-start <= delimit-columns-end
232 The column number start from 0 and it's relative to the beginning of selected
233 region. So if you selected a text region, the first column (column 0) is
234 located at beginning of line. If you selected a text rectangle, the first
235 column (column 0) is located at left corner."
236 :type
'(integer :tag
"Column End")
240 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
245 (defun delimit-columns-customize ()
246 "Customization of `columns' group."
248 (customize-group 'columns
))
251 (defmacro delimit-columns-str
(str)
252 `(if (stringp ,str
) ,str
""))
256 (defun delimit-columns-region (start end
)
257 "Prettify all columns in a text region.
259 START and END delimits the text region."
261 (let ((delimit-columns-str-before
262 (delimit-columns-str delimit-columns-str-before
))
263 (delimit-columns-str-separator
264 (delimit-columns-str delimit-columns-str-separator
))
265 (delimit-columns-str-after
266 (delimit-columns-str delimit-columns-str-after
))
267 (delimit-columns-before
268 (delimit-columns-str delimit-columns-before
))
269 (delimit-columns-after
270 (delimit-columns-str delimit-columns-after
))
271 (delimit-columns-start
272 (if (and (integerp delimit-columns-start
)
273 (>= delimit-columns-start
0))
274 delimit-columns-start
277 (if (integerp delimit-columns-end
)
280 (delimit-columns-limit (make-marker))
281 (the-end (copy-marker end
))
283 (when (<= delimit-columns-start delimit-columns-end
)
287 ;; get maximum length for each column
288 (and delimit-columns-format
290 (while (< (point) the-end
)
291 (delimit-columns-rectangle-max
297 (while (< (point) the-end
)
298 (delimit-columns-rectangle-line
304 (set-marker delimit-columns-limit nil
)
305 (set-marker the-end nil
)))))
312 (defun delimit-columns-rectangle (start end
)
313 "Prettify all columns in a text rectangle.
315 START and END delimits the corners of text rectangle."
317 (let ((delimit-columns-str-before
318 (delimit-columns-str delimit-columns-str-before
))
319 (delimit-columns-str-separator
320 (delimit-columns-str delimit-columns-str-separator
))
321 (delimit-columns-str-after
322 (delimit-columns-str delimit-columns-str-after
))
323 (delimit-columns-before
324 (delimit-columns-str delimit-columns-before
))
325 (delimit-columns-after
326 (delimit-columns-str delimit-columns-after
))
327 (delimit-columns-start
328 (if (and (integerp delimit-columns-start
)
329 (>= delimit-columns-start
0))
330 delimit-columns-start
333 (if (integerp delimit-columns-end
)
336 (delimit-columns-limit (make-marker))
337 (the-end (copy-marker end
))
339 (when (<= delimit-columns-start delimit-columns-end
)
340 ;; get maximum length for each column
341 (and delimit-columns-format
343 (operate-on-rectangle 'delimit-columns-rectangle-max
347 (operate-on-rectangle 'delimit-columns-rectangle-line
350 (set-marker delimit-columns-limit nil
)
351 (set-marker the-end nil
))))
354 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
355 ;; Internal Variables and Functions:
358 ;; to avoid compilation gripes
359 (defvar delimit-columns-max nil
)
360 (defvar delimit-columns-limit nil
)
363 (defun delimit-columns-rectangle-max (startpos &optional ignore1 ignore2
)
364 (set-marker delimit-columns-limit
(point))
368 ;; get current column length
370 (setq origin
(current-column))
371 (re-search-forward delimit-columns-separator
372 delimit-columns-limit
'move
))
374 (goto-char (match-beginning 0))
375 (setq values
(cons (- (current-column) origin
)
377 (setq ncol
(1+ ncol
)))
378 (setq values
(cons (- (current-column) origin
)
380 ;; extend delimit-columns-max, if needed
381 (let ((index (length delimit-columns-max
)))
383 (let ((extend (make-vector ncol
0)))
385 (setq index
(1- index
))
386 (aset extend index
(aref delimit-columns-max index
)))
387 (setq delimit-columns-max extend
))))
388 ;; get maximum column length
390 (setq ncol
(1- ncol
))
391 (aset delimit-columns-max ncol
(max (aref delimit-columns-max ncol
)
393 (setq values
(cdr values
)))))
396 (defun delimit-columns-rectangle-line (startpos &optional ignore1 ignore2
)
397 (let ((len (length delimit-columns-max
))
400 (set-marker delimit-columns-limit
(point))
402 ;; skip initial columns
403 (while (and (< ncol delimit-columns-start
)
404 (< (point) delimit-columns-limit
)
405 (re-search-forward delimit-columns-separator
406 delimit-columns-limit
'move
))
407 (setq ncol
(1+ ncol
)))
408 ;; insert first formating
409 (insert delimit-columns-str-before delimit-columns-before
)
410 ;; Adjust all columns but last one
412 (setq origin
(current-column))
413 (and (< (point) delimit-columns-limit
)
414 (re-search-forward delimit-columns-separator
415 delimit-columns-limit
'move
)
416 (or (< ncol delimit-columns-end
)
418 (goto-char (match-beginning 0))
420 (delete-region (match-beginning 0) (point))
421 (delimit-columns-format
422 (and delimit-columns-format
423 (make-string (- (aref delimit-columns-max ncol
)
424 (- (current-column) origin
))
426 (setq ncol
(1+ ncol
)))
427 ;; Prepare last column spaces
428 (let ((spaces (and delimit-columns-format
429 (make-string (- (aref delimit-columns-max ncol
)
430 (- (current-column) origin
))
432 ;; Adjust extra columns, if needed
433 (and delimit-columns-extra
434 (while (and (< (setq ncol
(1+ ncol
)) len
)
435 (<= ncol delimit-columns-end
))
436 (delimit-columns-format spaces
)
437 (setq spaces
(and delimit-columns-format
438 (make-string (aref delimit-columns-max ncol
)
440 ;; insert last formating
441 (cond ((null delimit-columns-format
)
442 (insert delimit-columns-after delimit-columns-str-after
))
443 ((eq delimit-columns-format
'padding
)
444 (insert spaces delimit-columns-after delimit-columns-str-after
))
446 (insert delimit-columns-after spaces delimit-columns-str-after
))
448 (goto-char (max (point) delimit-columns-limit
))))
451 (defun delimit-columns-format (spaces)
452 (cond ((null delimit-columns-format
)
453 (insert delimit-columns-after
454 delimit-columns-str-separator
455 delimit-columns-before
))
456 ((eq delimit-columns-format
'separator
)
457 (insert delimit-columns-after
459 delimit-columns-str-separator
460 delimit-columns-before
))
461 ((eq delimit-columns-format
'padding
)
463 delimit-columns-after
464 delimit-columns-str-separator
465 delimit-columns-before
))
467 (insert delimit-columns-after
468 delimit-columns-str-separator
470 delimit-columns-before
))
474 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
480 ;; arch-tag: 1cc0c5c5-1b2a-43e4-9ba5-bf9441cfd1a9
481 ;;; delim-col.el ends here