如何在 Vim 中复制并粘贴更改(命令模式)中的一些行

发布于 2024-12-07 17:46:04 字数 202 浏览 0 评论 0原文

我有这样的代码:

def foo
  puts "foo"
end

结果我需要:

def foo
  puts "foo"
end

def bar
  puts "bar"
end

我想在命令模式下执行此操作(您也可以参考一些帮助吗?),但也欢迎其他解决方案。

I has such code:

def foo
  puts "foo"
end

and as result I need:

def foo
  puts "foo"
end

def bar
  puts "bar"
end

I would like to perform this in command mode (could you also refer some help?) but other solutions are also welcome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迟到的我 2024-12-14 17:46:04

要复制/粘贴,请输入:(将光标放在 def foo 行上)

y3yGP

它将复制文件末尾的 3 行。使用xG,其中x是位于x行的行号。 (使用set number查看行号)

然后你可以使用命令更改bar中的foo:

:x,ys/foo/bar/

x块的第一行,和y 最后一篇:)

希望对你有帮助:)

To copy / paster use type : (with you cursor on def foo line)

y3yGP

It will copy the 3 lines at the end of the file. use xG where x is a line number to go at line x. (Use set number to see line number)

Then you can change foo in bar with command :

:x,ys/foo/bar/

With x the first line of the block, and y the last one :)

Hoping that helps you :)

深府石板幽径 2024-12-14 17:46:04

保持插入模式,我执行以下操作(光标位于 def foo 上):

S-vjjjyPgv:s/foo/bar/g

对我来说,不错的技巧是使用 gv 来检索最后的选择。

Staying in insert mode I do the following (cursor on def foo):

S-vjjjyPgv:s/foo/bar/g

Nice trick for me is using gv to retrive last selection.

请持续率性 2024-12-14 17:46:04

可以使用以下 Ex 命令(假设光标处于
位于 def 行)。

:,/^end/t//|'[,']s/\<foo\>/bar/g|'[pu!_

要跳转到配对 end 行,可以利用
%  由 matchit 插件扩展的命令。

:exe"norm V%y']o\ep"|'[,']s/\<foo\>/bar/g

One can use the following Ex command (assuming that the cursor is
located on the def line).

:,/^end/t//|'[,']s/\<foo\>/bar/g|'[pu!_

To jump to the pairing end line, one can take advantage of the
% command extended by the matchit plugin.

:exe"norm V%y']o\ep"|'[,']s/\<foo\>/bar/g
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文