如何将 :g/foo/p 搜索的结果粘贴到文件末尾?

发布于 2024-12-10 03:39:16 字数 357 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(3

柠北森屋 2024-12-17 03:39:16

我不知道(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 ($).

一刻暧昧 2024-12-17 03:39:16

您可以将消息重定向到寄存器

:redi @"
:g/foo/p
:redi END
:$pu

You can redirect the messages to a register

:redi @"
:g/foo/p
:redi END
:$pu
蓝海 2024-12-17 03:39:16

2) :call append('$', split(IndexByWord(['foo', 'bar']), '\n'))

:h append(

append({lnum}, {expr})                  *append()*
        When {expr} is a |List|: Append each item of the |List| as a
        text line below line {lnum} in the current buffer.

< code>:h split(

split({expr} [, {pattern} [, {keepempty}]])         *split()*
        Make a |List| out of {expr}.

使用 '$' 作为 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(

append({lnum}, {expr})                  *append()*
        When {expr} is a |List|: Append each item of the |List| as a
        text line below line {lnum} in the current buffer.

:h split(

split({expr} [, {pattern} [, {keepempty}]])         *split()*
        Make a |List| out of {expr}.

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']))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文