2

視覚的な選択を行ってから、dまたはxを押して削除し、 で挿入モードに切り替えることがよくありますi

現在のビジュアル選択を削除して挿入モードにする単一のキーストロークはありますか?

4

3 に答える 3

3

vim ヘルプはあなたの質問に正確に答えるだけです:

{Visual}["x]c   or                  *v_c* *v_s*
{Visual}["x]s       Delete the highlighted text [into register x] and
            start insert (for {Visual} see |Visual-mode|).  {not
            in Vi}

                            *v_r*
{Visual}["x]r{char} Replace all selected characters by {char}.

                            *v_C*
{Visual}["x]C       Delete the highlighted lines [into register x] and
            start insert.  In Visual block mode it works
            differently |v_b_C|.  {not in Vi}
                            *v_S*
{Visual}["x]S       Delete the highlighted lines [into register x] and
            start insert (for {Visual} see |Visual-mode|).  {not
            in Vi}
                            *v_R*
{Visual}["x]R       Currently just like {Visual}["x]S.  In a next version
            it might work differently. {not in Vi}

ユーザーにはsurround plugin、デフォルトのマッピングで{visual}S.

于 2013-10-10T20:32:02.847 に答える