我习惯了Resharper,在那里我可以搜索文件,不是内容,而是文件名,这使得它可以快速打开新文件。

这个功能在Visual Studio Code中实现了吗?有快捷方式吗?


当前回答

我使用的是VSCode 1.12.1

OSX press :

Cmd

+

p

其他回答

对于windows。 如果Ctrl+p并不总是有效 使用Ctrl+shift+n代替。

检查“使用忽略文件”和“使用全局忽略文件”的设置。 如果选中这些,VSCode将不会搜索任何列在.gitignore或.ignore中的文件夹

在VSCode 1.75(2023年1月)中,你将有一个新的文件过滤器选项:“模糊匹配”切换。

来自问题116286:树:支持连续查找

In a list of files I can filter them by start typing the name of the file. It is a super useful feature when you have hundreds+ files. My issue is that the filter is trying to find the letters in the whole file name. Here is an example search for word "file": this-is-**file**-i-looked-for.jpeg (I expect this to be returned) **f**or-th**i**s-**l**.jp**e**g (This should not be returned, it is only a random match) Would it be possible to add there extra settings to only returns full strings matches? Or is there some setting already buried somewhere?

解决方案:在树查找小部件中添加一个“模糊匹配”切换按钮。

新选项:

defaultFindMatchTypeSettingKey。fuzzy:搜索时使用模糊匹配。 defaultFindMatchTypeSettingKey。在搜索时使用连续匹配。

如果您只想搜索单个文件名

只需按Ctrl+P,然后输入并选择你的一个

如果要打开名称包含特定字符串的所有文件

打开搜索面板 把常用词放进这些文件里 在'files to include'中,将搜索字符串加上*,例如*Signaller*

你也可以按F1打开命令面板,然后通过退格删除>。现在你也可以搜索文件了。