8

Vimでこれらのコマンドを知っています:

J : 現在行の後に下の行
を結合 -J : 上の行の後に現在行を結合

しかし、現在の行の後に上の行に参加するにはどうすればよいですか?

4

3 に答える 3

1

それを行うには多くの方法があります。1 つは、上の行を削除して、下の行の末尾に追加することです。

k move up one line
^ move to the first printable character
y$ yank to the end of the line
"_d get rid of the now useless line by deleting it into the black hole register
$ move to the end of the line
p put the deleted text
于 2012-11-28T16:37:54.823 に答える