gpt4 book ai didi

c++ - 我怎样才能 grep 遍历当前在 vim 中打开的文件中#included 的所有文件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:16:59 26 4
gpt4 key购买 nike

假设我在 vim 中打开了以下 .hpp 文件:

#pragma once
#include "a.hpp"
#include "b.hpp"
#include "c.hpp"

#include <boost/something.hpp>
// some code

现在,假设我想在任何包含的文件中搜索术语 Token 的任何出现(也可能在 它们 包含的文件中)。我怎样才能轻松做到这一点?

我想跳过所有无法从我当前的 vimpath 中找到的文件,例如在这种情况下,我的路径中可能没有 boost,所以我希望它不在 boost/something.hpp 中搜索。

最佳答案

您可以使用 include-search vim 中可用的功能。特别是,当您将光标放在该词上时,这是搜索所有出现的 Token 所需的命令:

[I          Display all lines that contain the keyword under the
cursor. Filenames and line numbers are displayed
for the found lines. The search starts at the
beginning of the file. {not in Vi}

要跳转到您可以使用的第一个匹配项:

[<Tab>

摘自 Bram 的演讲 Seven habits of effective editing在时间 26'08"。

最后一条命令在 Vim 的帮助中也有如下描述:

[ CTRL-I    Jump to the first line that contains the keyword
under the cursor. The search starts at the beginning
of the file. Lines that look like a comment are
ignored (see 'comments' option). If a count is given,
the count'th matching line is jumped to, and comment
lines are not ignored. {not in Vi}

关于c++ - 我怎样才能 grep 遍历当前在 vim 中打开的文件中#included 的所有文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28821046/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com