19

Emacs org-modeには、org-goto-headingのようなコマンドがありますか?

長いorg-modeファイルでは、次のように下に向かっています。

* questions

単語の他のすべてのインスタンスを通り抜ける必要なしに、その見出しにジャンプしたいと思いますquestions

次のようなコマンドはありますか?

基本的に、次のようなものを使用してその見出しに移動したいと思います。M-x org-goto-heading questions <RET>

4

6 に答える 6

18

これは、ナビゲーションについて議論している組織メーリング リストの興味深いスレッドです。

基本的に、これを init ファイルに追加します。

(setq org-goto-interface 'outline-path-completion
      org-goto-max-level 10)

org-gotoまた、コマンドで見出しにジャンプできますC-c C-jC-u C-c C-w org-refileこれを init ファイルに追加して使用することもできます。

(setq org-outline-path-complete-in-steps nil)
于 2013-02-22T01:10:22.150 に答える
11

これが機能するかどうかはわかりませんが、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
于 2013-02-21T20:46:02.480 に答える
7

次にorg-occur-gotoがあります。これは、すべての org-mode バッファーで複数回検索を行い、入力時に動的に結果を表示します。

あらゆるテキストに役立ちます (見出しだけでなく)。

于 2013-02-22T01:29:05.227 に答える
7

このコマンドは : にバインドされていM-oます(imenu-anywhere)

セクション (すべてのセクションのリストから選択) にすばやくジャンプできます。組織モードだけでなく、他の多くのモードでも機能します。

于 2013-02-21T21:36:02.010 に答える
5

議題ファイルの見出しを探している場合helm-org-agenda-files-headingsは、非常に便利なコマンドです。パッケージの一部で、helmMELPA から入手できます。

于 2015-10-18T10:12:40.750 に答える