英文:
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).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论