如何将 :g/foo/p 搜索的结果粘贴到文件末尾?
1)我使用全局命令 :g : 在文件中搜索 foo
:g/foo/p
,我想将结果粘贴到文件末尾。我该如何进行?
2)同样的问题(或者是吗?)以及 echo 语句的结果:(
:echo IndexByWord(['word1', 'word2', 'word3', etc])
关于此函数,请参阅:Vim: 如何索引纯文本文件?)
提前致谢
1) I search foo in a file with the global command :g :
:g/foo/p
and I want to paste the results at the end of the file. How must I proceed ?
2) Same question (or is it ?) with the results of an echo statement :
:echo IndexByWord(['word1', 'word2', 'word3', etc])
(about this function, see : Vim : how to index a plain text file?)
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道(2),但对于(1),将其更改为
:g/foo/t$
。这会将行复制 (t
) 到最后一个可寻址行 ($
)。I don't know about (2), but for (1), change it to
:g/foo/t$
. This will copy (t
) the line to the last addressable line ($
).您可以将消息重定向到寄存器
You can redirect the messages to a register
2)
:call append('$', split(IndexByWord(['foo', 'bar']), '\n'))
:h append(
< code>:h split(
使用
'$'
作为 lnum 等于缓冲区中的最后一行。您需要使用 split() 因为您引用的函数 IndexByWord() ,返回一个字符串,我认为您可能想要。更改 IndexByWord() 以返回列表
如果您将 IndexByWord() 中的这一行:
return join(result_list, "\n")
更改为
return result_list
追加是简单一点:
:call append('$', IndexByWord(['foo', 'bar']))
2)
:call append('$', split(IndexByWord(['foo', 'bar']), '\n'))
:h append(
:h split(
Using
'$'
as lnum is equal to the last line in the buffer.You need to use split() because the function you referred to, IndexByWord(), returns a string. It looks to me that you might want to change IndexByWord() to return a list.
If you change this line in IndexByWord():
return join(result_list, "\n")
into
return result_list
Appending is a bit simpler then:
:call append('$', IndexByWord(['foo', 'bar']))