123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- (defgroup columns nil
- "Prettify columns."
- :link '(emacs-library-link :tag "Source Lisp File" "delim-col.el")
- :prefix "delimit-columns-"
- :group 'wp)
- (defcustom delimit-columns-str-before ""
- "Specify a string to be inserted before all columns."
- :type '(string :tag "Before All Columns")
- :group 'columns)
- (defcustom delimit-columns-str-separator ", "
- "Specify a string to be inserted between each column."
- :type '(string :tag "Between Each Column")
- :group 'columns)
- (defcustom delimit-columns-str-after ""
- "Specify a string to be inserted after all columns."
- :type '(string :tag "After All Columns")
- :group 'columns)
- (defcustom delimit-columns-before ""
- "Specify a string to be inserted before each column."
- :type '(string :tag "Before Each Column")
- :group 'columns)
- (defcustom delimit-columns-after ""
- "Specify a string to be inserted after each column."
- :type '(string :tag "After Each Column")
- :group 'columns)
- (defcustom delimit-columns-separator "\t"
- "Specify a regexp which separates each column."
- :type '(regexp :tag "Column Separator")
- :group 'columns)
- (defcustom delimit-columns-format t
- "Specify how to format columns.
- For examples below, consider:
- + columns `ccc' and `dddd',
- + the maximum column length for each column is 6,
- + and the following settings:
- (setq delimit-columns-before \"<\")
- (setq delimit-columns-after \">\")
- (setq delimit-columns-separator \":\")
- Valid values are:
- nil no formatting. That is, `delimit-columns-after' is followed by
- `delimit-columns-separator'.
- For example, the result is: \"<ccc>:<dddd>:\"
- t align columns. That is, `delimit-columns-after' is followed by
- `delimit-columns-separator' and then followed by spaces.
- For example, the result is: \"<ccc>: <dddd>: \"
- 'separator align separators. That is, `delimit-columns-after' is followed
- by spaces and then followed by `delimit-columns-separator'.
- For example, the result is: \"<ccc> :<dddd> :\"
- 'padding format column by filling with spaces before
- `delimit-columns-after'. That is, spaces are followed by
- `delimit-columns-after' and then followed by
- `delimit-columns-separator'.
- For example, the result is: \"<ccc >:<dddd >:\"
- Any other value is treated as t."
- :type '(choice :menu-tag "Column Formatting"
- :tag "Column Formatting"
- (const :tag "No Formatting" nil)
- (const :tag "Column Alignment" t)
- (const :tag "Separator Alignment" separator)
- (const :tag "Column Padding" padding))
- :group 'columns)
- (defcustom delimit-columns-extra t
- "Non-nil means that lines will have the same number of columns.
- This has effect only when there are lines with different number of columns."
- :type '(boolean :tag "Lines With Same Number Of Column")
- :group 'columns)
- (defcustom delimit-columns-start 0
- "Specify column number to start prettifying.
- See also `delimit-columns-end' for documentation.
- The following relation must hold:
- 0 <= delimit-columns-start <= delimit-columns-end
- The column number start from 0 and it's relative to the beginning of selected
- region. So if you selected a text region, the first column (column 0) is
- located at beginning of line. If you selected a text rectangle, the first
- column (column 0) is located at left corner."
- :type '(integer :tag "Column Start")
- :group 'columns)
- (defcustom delimit-columns-end 1000000
- "Specify column number to end prettifying.
- See also `delimit-columns-start' for documentation.
- The following relation must hold:
- 0 <= delimit-columns-start <= delimit-columns-end
- The column number start from 0 and it's relative to the beginning of selected
- region. So if you selected a text region, the first column (column 0) is
- located at beginning of line. If you selected a text rectangle, the first
- column (column 0) is located at left corner."
- :type '(integer :tag "Column End")
- :group 'columns)
- (defvar delimit-columns-max nil)
- (defvar delimit-columns-limit nil)
- (defun delimit-columns-customize ()
- "Customization of `columns' group."
- (interactive)
- (customize-group 'columns))
- (defmacro delimit-columns-str (str)
- `(if (stringp ,str) ,str ""))
- (defun delimit-columns-region (start end)
- "Prettify all columns in a text region.
- START and END delimits the text region."
- (interactive "*r")
- (let ((delimit-columns-str-before
- (delimit-columns-str delimit-columns-str-before))
- (delimit-columns-str-separator
- (delimit-columns-str delimit-columns-str-separator))
- (delimit-columns-str-after
- (delimit-columns-str delimit-columns-str-after))
- (delimit-columns-before
- (delimit-columns-str delimit-columns-before))
- (delimit-columns-after
- (delimit-columns-str delimit-columns-after))
- (delimit-columns-start
- (if (and (integerp delimit-columns-start)
- (>= delimit-columns-start 0))
- delimit-columns-start
- 0))
- (delimit-columns-end
- (if (integerp delimit-columns-end)
- delimit-columns-end
- 1000000))
- (delimit-columns-limit (make-marker))
- (the-end (copy-marker end))
- delimit-columns-max)
- (when (<= delimit-columns-start delimit-columns-end)
- (save-excursion
- (goto-char start)
- (beginning-of-line)
-
- (and delimit-columns-format
- (save-excursion
- (while (< (point) the-end)
- (delimit-columns-rectangle-max
- (prog1
- (point)
- (end-of-line)))
- (forward-char 1))))
-
- (while (< (point) the-end)
- (delimit-columns-rectangle-line
- (prog1
- (point)
- (end-of-line)))
- (forward-char 1))
-
- (set-marker delimit-columns-limit nil)
- (set-marker the-end nil)))))
- (require 'rect)
- (defun delimit-columns-rectangle (start end)
- "Prettify all columns in a text rectangle.
- START and END delimits the corners of text rectangle."
- (interactive "*r")
- (let ((delimit-columns-str-before
- (delimit-columns-str delimit-columns-str-before))
- (delimit-columns-str-separator
- (delimit-columns-str delimit-columns-str-separator))
- (delimit-columns-str-after
- (delimit-columns-str delimit-columns-str-after))
- (delimit-columns-before
- (delimit-columns-str delimit-columns-before))
- (delimit-columns-after
- (delimit-columns-str delimit-columns-after))
- (delimit-columns-start
- (if (and (integerp delimit-columns-start)
- (>= delimit-columns-start 0))
- delimit-columns-start
- 0))
- (delimit-columns-end
- (if (integerp delimit-columns-end)
- delimit-columns-end
- 1000000))
- (delimit-columns-limit (make-marker))
- (the-end (copy-marker end))
- delimit-columns-max)
- (when (<= delimit-columns-start delimit-columns-end)
-
- (and delimit-columns-format
- (save-excursion
- (operate-on-rectangle 'delimit-columns-rectangle-max
- start the-end nil)))
-
- (save-excursion
- (operate-on-rectangle 'delimit-columns-rectangle-line
- start the-end nil))
-
- (set-marker delimit-columns-limit nil)
- (set-marker the-end nil))))
- (defun delimit-columns-rectangle-max (startpos &optional _ignore1 _ignore2)
- (set-marker delimit-columns-limit (point))
- (goto-char startpos)
- (let ((ncol 1)
- origin values)
-
- (while (progn
- (setq origin (current-column))
- (re-search-forward delimit-columns-separator
- delimit-columns-limit 'move))
- (save-excursion
- (goto-char (match-beginning 0))
- (setq values (cons (- (current-column) origin)
- values)))
- (setq ncol (1+ ncol)))
- (setq values (cons (- (current-column) origin)
- values))
-
- (let ((index (length delimit-columns-max)))
- (and (> ncol index)
- (let ((extend (make-vector ncol 0)))
- (while (> index 0)
- (setq index (1- index))
- (aset extend index (aref delimit-columns-max index)))
- (setq delimit-columns-max extend))))
-
- (while values
- (setq ncol (1- ncol))
- (aset delimit-columns-max ncol (max (aref delimit-columns-max ncol)
- (car values)))
- (setq values (cdr values)))))
- (defun delimit-columns-rectangle-line (startpos &optional _ignore1 _ignore2)
- (let ((len (length delimit-columns-max))
- (ncol 0)
- origin)
- (set-marker delimit-columns-limit (point))
- (goto-char startpos)
-
- (while (and (< ncol delimit-columns-start)
- (< (point) delimit-columns-limit)
- (re-search-forward delimit-columns-separator
- delimit-columns-limit 'move))
- (setq ncol (1+ ncol)))
-
- (insert delimit-columns-str-before delimit-columns-before)
-
- (while (progn
- (setq origin (current-column))
- (and (< (point) delimit-columns-limit)
- (re-search-forward delimit-columns-separator
- delimit-columns-limit 'move)
- (or (< ncol delimit-columns-end)
- (progn
- (goto-char (match-beginning 0))
- nil))))
- (delete-region (match-beginning 0) (point))
- (delimit-columns-format
- (and delimit-columns-format
- (make-string (- (aref delimit-columns-max ncol)
- (- (current-column) origin))
- ?\s)))
- (setq ncol (1+ ncol)))
-
- (let ((spaces (and delimit-columns-format
- (make-string (- (aref delimit-columns-max ncol)
- (- (current-column) origin))
- ?\s))))
-
- (and delimit-columns-extra
- (while (and (< (setq ncol (1+ ncol)) len)
- (<= ncol delimit-columns-end))
- (delimit-columns-format spaces)
- (setq spaces (and delimit-columns-format
- (make-string (aref delimit-columns-max ncol)
- ?\s)))))
-
- (cond ((null delimit-columns-format)
- (insert delimit-columns-after delimit-columns-str-after))
- ((eq delimit-columns-format 'padding)
- (insert spaces delimit-columns-after delimit-columns-str-after))
- (t
- (insert delimit-columns-after spaces delimit-columns-str-after))
- ))
- (goto-char (max (point) delimit-columns-limit))))
- (defun delimit-columns-format (spaces)
- (cond ((null delimit-columns-format)
- (insert delimit-columns-after
- delimit-columns-str-separator
- delimit-columns-before))
- ((eq delimit-columns-format 'separator)
- (insert delimit-columns-after
- spaces
- delimit-columns-str-separator
- delimit-columns-before))
- ((eq delimit-columns-format 'padding)
- (insert spaces
- delimit-columns-after
- delimit-columns-str-separator
- delimit-columns-before))
- (t
- (insert delimit-columns-after
- delimit-columns-str-separator
- spaces
- delimit-columns-before))
- ))
- (provide 'delim-col)
|