19

次の構造を持つドキュメントで組織モードにいるとします。

* First headline 
* Second headline
** Section A
   Here is one line
   Here is another line
   blah, blah
** Section B

カーソルが と表示されている行にあるとしますHere is another line** Section Aこの位置からキーボードショートカットで倒したいです。

  • これを機能させるには、カーソルを星の上に置く必要があるため、押し<TAB>ても折りたたまれません。** Section A
  • 押すと、現在のアウトラインではなく、すべての<Shift-TAB>アウトラインが折りたたまれます。

スコープ内のアウトライン(つまり、「現在のアウトライン」)の折りたたみを繰り返す方法はありますか?

4

2 に答える 2

22

の値を変更することにより、org-cycleコマンド(にバインドされている)の動作をカスタマイズできます。<TAB>org-cycle-emulate-tab

** Section Aカーソルが上にあるときに折りたたむにはHere is another line、.emacsファイルに次の行を追加します。

(setq org-cycle-emulate-tab 'white)

は、空の行をインデントwhiteするために引き続き使用できます。org-mode Github<TAB>から:

org-cycle-emulate-tab's value is t

Documentation:
Where should `org-cycle' emulate TAB.
nil         Never
white       Only in completely white lines
whitestart  Only at the beginning of lines, before the first non-white char
t           Everywhere except in headlines
exc-hl-bol  Everywhere except at the start of a headline
于 2012-10-04T23:28:53.547 に答える