1. [:alnum:] can not match Chinese char, what about add [:multibyte:] ? ``` (defun org--align-tags-here (to-col) ... (if (or (not (looking-at ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
... ) (defun org-agenda-align-tags (&optional line) ... (while (re-search-forward "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" ... ) ```