如何启用属性、缓冲区内设置和类似内容的自动对齐?
我总是以这样的方式结束,然后必须手动对齐。
#+STARTUP: indent
#+PRIORITIES: A C B
#+COLUMNS: %ITEM %foo %bar
* section
:PROPERTIES:
:foo: foo
:barbaz: barbaz
:END:
但是我发现一些标志对齐应该自动发生。例如有这样的:
(defcustom org-property-format "%-10s %s"
"How property key/value pairs should be formatted by `indent-line'.
When `indent-line' hits a property definition, it will format the line
according to this format, mainly to make sure that the values are
lined-up with respect to each other."
:group 'org-properties
:type 'string)
是否有一个命令可以修复属性以尊重它?插入的属性不应该org-set-property
遵循这种格式吗?M-x org-indent-line
不为我做任何事情,indent-line
也不存在。