如何在VS Code中搜索所有文件中特定函数名称?

huangapple go评论129阅读模式
英文:

How do I search for a specific function name in all my files in VS Code?

问题

我知道我可以使用CTRL+P来查找文件,然后使用CTRL+SHIFT+O来查找所需的函数。

但是,如果我不记得那个函数在哪里,或者只是想节省时间,有没有一种方法可以搜索所有文件中的所有函数?

英文:

I know I can use CTRL+P to find the file, and then use CTRL+SHIFT+O to find the needed function.

However, if I do not recall where that function is, or just want to save time, is there a way to search ALL functions in ALL files?

答案1

得分: 2

要在所有文件中搜索方法名称,您可以使用CTRL + P,然后以#开始搜索。

按Ctrl+T可以在文件之间搜索,而不仅限于当前文件。

英文:

To search a method name across all files you can use CTRL + P and then start search with #.

Press Ctrl+T to searches across files, not just the current file.

答案2

得分: 1

根据您使用的语言的语言支持程度以及您所使用的语言支持扩展程序,您可以在命令面板中使用“在工作区中转到符号...”命令,该命令默认绑定为<kbd>ctrl/cmd</kbd>+<kbd>t</kbd>。这将让您查找符号的“起源”或“定义”。

如果这种方法不起作用,您可以尝试使用搜索视图进行文本搜索(打开搜索视图或使用“搜索:在文件中查找”命令)。

英文:

Depending on how good language support is for the language you're using and given the language support extension you're using for it is, you can use the Go To Symbol in Workspace... command in the command palette, which is bound by default to <kbd>ctrl/cmd</kbd>+<kbd>t</kbd>. That would get you do the "origin"/"definition" of the symbol.

If that fails, you can try doing text searches using the Search View (open the Search View, or use the Search: Find in Files command).

huangapple
  • 本文由 发表于 2023年6月22日 17:34:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/76530475.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定