1

プロパティ、バッファ内設定などの自動調整はどのように有効になりますか?

私はいつもこのようなものになってしまい、手動で調整する必要があります。

#+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し、存在しません。

4

1 に答える 1

2

org-indent-lineプロパティキーワードが行の先頭にある場合、正しいことをしませんでした。今はそうです。

また、新しいgit pullから、リージョンで使用C-M-\するとリージョンがインデントされます。

オプションヘッダーをフォーマットするには、位置合わせする領域を選択して実行します

M-x align-regexp RET <space> RET

于 2012-07-26T06:10:44.640 に答える