Emacs org-modeには、org-goto-headingのようなコマンドがありますか?
長いorg-modeファイルでは、次のように下に向かっています。
* questions
単語の他のすべてのインスタンスを通り抜ける必要なしに、その見出しにジャンプしたいと思いますquestions
。
次のようなコマンドはありますか?
基本的に、次のようなものを使用してその見出しに移動したいと思います。M-x org-goto-heading questions <RET>
これは、ナビゲーションについて議論している組織メーリング リストの興味深いスレッドです。
基本的に、これを init ファイルに追加します。
(setq org-goto-interface 'outline-path-completion
org-goto-max-level 10)
org-goto
また、コマンドで見出しにジャンプできますC-c C-j。C-u C-c C-w org-refile
これを init ファイルに追加して使用することもできます。
(setq org-outline-path-complete-in-steps nil)
これが機能するかどうかはわかりませんが、org-goto
機能がありますC-c C-j
。
呼び出したら、上下キーまたは検索を使用してツリーをスクロールできますC-s
。
これはdocsのスニペットです。
C-c C-j (org-goto)
Jump to a different place without changing the current outline visibility.
Shows the document structure in a temporary buffer, where you can use the
following keys to find your destination:
<TAB> Cycle visibility.
<down> / <up> Next/previous visible headline.
<RET> Select this location.
/ Do a Sparse-tree search
The following keys work if you turn off org-goto-auto-isearch
n / p Next/previous visible headline.
f / b Next/previous headline same level.
u One level up.
0-9 Digit argument.
q Quit
次にorg-occur-gotoがあります。これは、すべての org-mode バッファーで複数回検索を行い、入力時に動的に結果を表示します。
あらゆるテキストに役立ちます (見出しだけでなく)。
このコマンドは : にバインドされていM-o
ます(imenu-anywhere)
。
セクション (すべてのセクションのリストから選択) にすばやくジャンプできます。組織モードだけでなく、他の多くのモードでも機能します。
議題ファイルの見出しを探している場合helm-org-agenda-files-headings
は、非常に便利なコマンドです。パッケージの一部で、helm
MELPA から入手できます。