diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-09 04:50:37 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-09 04:50:37 +0200 |
commit | fb5d70c6fc547f75c2971d3d91da63ecec245fd1 (patch) | |
tree | 68c15f814613451a8bdeb819b37bf113f1182403 /lisp/delim-col.el | |
parent | 9926e8112605049fe3c7001606bf7945b81a631b (diff) | |
download | emacs-fb5d70c6fc547f75c2971d3d91da63ecec245fd1.tar.gz emacs-fb5d70c6fc547f75c2971d3d91da63ecec245fd1.tar.bz2 emacs-fb5d70c6fc547f75c2971d3d91da63ecec245fd1.zip |
Make delimit-columns-region say what it does
* lisp/delim-col.el (delimit-columns-region): Make the doc string
say a bit more about what it does (bug#35651).
(delimit-columns-rectangle): Refer to the first function.
Diffstat (limited to 'lisp/delim-col.el')
-rw-r--r-- | lisp/delim-col.el | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/lisp/delim-col.el b/lisp/delim-col.el index b3a773e5b02..2f3ee3647e8 100644 --- a/lisp/delim-col.el +++ b/lisp/delim-col.el @@ -258,7 +258,25 @@ at the left corner." (defun delimit-columns-region (start end) "Prettify all columns in a text region. -START and END delimit the text region." +START and END delimit the text region. + +If you have, for example, the following columns: + + a b c d + aaaa bb ccc ddddd + +Depending on your settings (see below), you then obtain the +following result: + + [ a , b , c , d ] + [ aaaa, bb , ccc , ddddd ] + +See the `delimit-columns-str-before', +`delimit-columns-str-after', `delimit-columns-str-separator', +`delimit-columns-before', `delimit-columns-after', +`delimit-columns-separator', `delimit-columns-format' and +`delimit-columns-extra' variables for customization of the +look. " (interactive "*r") (if rectangle-mark-mode ;; Delegate to delimit-columns-rectangle when called with a @@ -314,6 +332,8 @@ START and END delimit the text region." (defun delimit-columns-rectangle (start end) "Prettify all columns in a text rectangle. +See `delimit-columns-region' for what this entails. + START and END delimit the corners of the text rectangle." (interactive "*r") (let ((delimit-columns-str-before |