Vim - 段落間の移動(空行を介して)

Vim - 段落間の移動(空行を介して)

次/前の空行に移動するコマンドはVIMに組み込まれていますか?

答え1

次の空行を使用する(右中括弧):

}

前の空行を使用(左中括弧):

{

コマンドモードで上記の内容を入力してください。

答え2

ナビゲーションヘルプに移動する(:h navigation):

Cursor motions                                  cursor-motions navigation

These commands move the cursor position.  If the new position is off of the
screen, the screen is scrolled to show the cursor (see also 'scrolljump' and
'scrolloff' options).

1. Motions and operators        operator
2. Left-right motions           left-right-motions
3. Up-down motions              up-down-motions
4. Word motions                 word-motions
5. Text object motions          object-motions
6. Text object selection        object-select
7. Marks                        mark-motions
8. Jumps                        jump-motions
9. Various motions              various-motions

Text object motions最も有力な候補のようです(またはJumps?)。に移動して()をobject-motions押します。<c-]>Ctrl ]

5. Text object motions                                  object-motions

                                                        (
(                       [count] sentences backward.  exclusive motion.

                                                        )
)                       [count] sentences forward.  exclusive motion.

                                                        {
{                       [count] paragraphs backward.  exclusive motion

                                                        }
}                       [count] paragraphs forward.  exclusive motion.

ビンゴ!

関連情報