summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2011-10-06 09:44:08 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2011-10-06 09:44:08 +0200
commit2978501ad01c1fc33c34119ad431fb68746c6f92 (patch)
tree1b37e51dbc2ee5f0cdce5732fdade7f0e444bef5
parent3d83564b7de362f2bee602fd63e0d90dd4fe3ce8 (diff)
downloadorg-mode-2978501ad01c1fc33c34119ad431fb68746c6f92.tar.gz
Bugfix for alignment of tag next to header name
* lisp/org.el (org-align-tags-here): Allow tags to be placed right after heading. (org-tags-column): Document the meaning of tags column 0. Patch by Michael Brand. TINYCHANGE
-rw-r--r--lisp/org.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 7487347..7e6735e 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -2879,7 +2879,9 @@ This is an undocumented feature, you should not rely on it.")
"The column to which tags should be indented in a headline.
If this number is positive, it specifies the column. If it is negative,
it means that the tags should be flushright to that column. For example,
--80 works well for a normal 80 character screen."
+-80 works well for a normal 80 character screen.
+When 0, place tags directly after headline text, with only one space in
+between."
:group 'org-tags
:type 'integer)
@@ -13065,7 +13067,7 @@ If ONOFF is `on' or `off', don't toggle but set to this state."
(goto-char (match-beginning 1))
(insert " ")
(delete-region (point) (1+ (match-beginning 2)))
- (setq ncol (max (1+ (current-column))
+ (setq ncol (max (current-column)
(1+ col)
(if (> to-col 0)
to-col