Selaa lähdekoodia

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
Carsten Dominik 14 vuotta sitten
vanhempi
commit
2978501ad0
1 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 4 2
      lisp/org.el

+ 4 - 2
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.
   "The column to which tags should be indented in a headline.
 If this number is positive, it specifies the column.  If it is negative,
 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,
 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
   :group 'org-tags
   :type 'integer)
   :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))
 	  (goto-char (match-beginning 1))
 	  (insert " ")
 	  (insert " ")
 	  (delete-region (point) (1+ (match-beginning 2)))
 	  (delete-region (point) (1+ (match-beginning 2)))
-	  (setq ncol (max (1+ (current-column))
+	  (setq ncol (max (current-column)
 			  (1+ col)
 			  (1+ col)
 			  (if (> to-col 0)
 			  (if (> to-col 0)
 			      to-col
 			      to-col