lisp/org.el (org-set-tags): Calculate width of tags with string-width
* lisp/org.el (org-set-tags): Width of strings presenting on a buffer should be calculated with `string-width' instead of `length'. This fixes unaligned tags for the languages with multi-width characters. TINYCHANGE
This commit is contained in:
parent
ae1e22b64d
commit
228ea6881b
|
@ -14543,7 +14543,7 @@ With prefix ARG, realign all tags in headings in the current buffer."
|
|||
0)
|
||||
p0 (if (equal (char-before) ?*) (1+ (point)) (point))
|
||||
tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
|
||||
c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (length tags))))
|
||||
c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
|
||||
rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
|
||||
(replace-match rpl t t)
|
||||
(and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
|
||||
|
|
Loading…
Reference in New Issue