1331

I am used to Resharper where I can search for files, not the content, but the filename, which makes it quick to open new files.

Is this feature implemented in Visual Studio Code and is there a shortcut for it?

congusbongus
15.1k8 gold badges83 silver badges105 bronze badges
asked May 7, 2015 at 8:12
3
  • 1
    Can we use wildcards to search for a particular file? Example markdown files starting with Pan as Pan*.md Commented May 19, 2018 at 1:11
  • you can make it with Explorer Tree stackoverflow.com/a/61460710/2736742 Commented Jun 4, 2020 at 16:05
  • Why is such a common task not intuitive! Judging by the likes on this question many people are annoyed with the lack of it :) Commented Mar 2, 2024 at 7:37

22 Answers 22

2040

Using Go to File... which is under the Go menu or using keyboard shortcut:

  • On Windows Ctrl+p or Ctrl+e
  • On macOS Cmd ⌘+p
  • On Linux Ctrl+p or Ctrl+e

Then type the file name.

Also be sure to checkout that you can set your own keybindings and that there are cheatsheets available for Windows, macOS and Linux.

wjandrea
34k10 gold badges69 silver badges107 bronze badges
answered May 7, 2015 at 17:52
Sign up to request clarification or add additional context in comments.

19 Comments

this (and ctrl/cmd+p) doesn't work for excluded folders such as node_modules. it would be nice to have a way to search all files at times.
This seems to only work for the current folder. What if I want to search across the entire project? My files are rarely in the folder I'm currently in.
On OSX cmd + e searches on the current file, the correct key binding is cmd + p that brings the command palette where you can search for files and much more
This answer looks obsolete or incorrect. Another answer is correctly stating that the right combination is cmd + p.
This search only recent files, not all files
|
147

Since the 1.70.0 release in July 2022, you can find and filter in tree views such as the Find Explorer. You can press Ctrl+Alt+F inside trees to pop up the Find control. enter image description here

Before the 1.70.0 release

when you click anywhere in the explorer tree, and start typing something on the keyboard, the search keyword appears in the top right corner of the screen : ("module.ts")

enter image description here

And when you hover over the keyword with the mouse cursor, you can click on "Enable Filter on Type" to filter tree with your search !

answered Apr 27, 2020 at 13:41

23 Comments

This would be a great approach but for some reason the results are restricted to only a few items. E.g. I know I have around 30 odd files of a certain name in a monorepo - when I follow these instructions the results are limited to 6 files it seams
I'm on 1.52 and it only shows files that were visible (not in a collapsed folder) in the tree before filtering. @A.Morel try your example again but this time before you filter collapse the "dinner" folder. When you apply the filter not only will the file in that folder not appear, but the folder won't even be listed.
I've created this to see if it could be improved github.com/microsoft/vscode/issues/129340
Why after 2 years I'm only finding this now. There should be some initial UI for this and not just a key press feature.
This is deprecated. No more work. Check this answer for the new way and the details stackoverflow.com/a/73459511/7668448. Focus on tree and CMD/CTRL + F
|
87

On OSX, for me it's cmd ⌘ + p. cmd ⌘ + e just searches within the currently opened file.

Tiago
3,1715 gold badges26 silver badges41 bronze badges
answered Oct 19, 2016 at 19:48

6 Comments

Using VS Code Version 1.7.2 Cmd+P (Mac) or Ctrl+P (Windows) brings up the Command Palette. This gives you access to an entire set of commands including File Search. See the docs at code.visualstudio.com/docs/editor/codebasics
This should be the accepted answer, commands have changed in more recent versions.
Yes, CTRL+P allows to to type a file name in and open it. But it replaces currently opened file. How can I keep opening files just like gong through Solution Explorer and clicking files?
@Mark when the filename is in italics, it will be replaced by the next file you open. Select "Keep Open" (right-click the tab), or use "View: Keep Editor" in the command palette.
Or, @Mark, a much better answer: stackoverflow.com/questions/38713405/…
|
71

Method 1

  1. Go → Go to File (shortcut: Ctrl + p).

  2. Search for your file:

    video with steps of method 1

Method 2

  1. View → command palette (shortcut: Ctrl + Shift + p).

  2. Type "Go to file"

  3. Search for your file:

    video with steps of method 2

hippietrail
17.3k21 gold badges114 silver badges181 bronze badges
answered Feb 10, 2022 at 5:16

Comments

42

Win: CTRL+P or CTRL+E

Mac: CMD+P or CMD+E


Don't want to remember another shortcut?

Open the Command Palette:

  • Menu: View -> Command Palette
  • Windows Shortcut: Ctrl+Shift+P

and hit backspace to delete ">" character and then begin typing to search for files via filename. :)

LightCC
12.1k8 gold badges70 silver badges107 bronze badges
answered Aug 21, 2017 at 7:40

1 Comment

Deleting ">" was the key!
33

Other answers don't mention this command is named workbench.action.quickOpen.

You can use this to search the Keyboard Shortcuts menu located in Preferences.

On MacOS the default keybinding is cmd ⌘ + P.

(Coming from Sublime Text, I always change this to cmd ⌘ + T)

Misha Akopov
13.2k27 gold badges73 silver badges87 bronze badges
answered Jun 6, 2019 at 16:58

2 Comments

I accidentally deleted the CMD + P shortcut and now i can't recover it ; the d workbench.action.quickOpen does not show on my commands list... What can i do ?
You can search for the action by typing the name of the action into the Keybindings search bar in the Keybindings view. When it appears in the search results, simply click the + icon on the left side to set a keybinding again
31

For filtering in the tree on keyboard typing. The feature is deprecated. No more work.

No more of this old red inflexible box:

enter image description here

The replacement is way better and more interesting:

Actually not really. It could have been. The new way only filters on expanded folders only. And that's a shame. Check the last session for where the development is at. And for the options we are left with.

https://code.visualstudio.com/updates/v1_70#_tree-find-control

CMD + F (mac) or CTRL + F (else) [while focused]

vscode tree filtering new implementation

enter image description here

No settings are needed. It just works. And more elegantly (except for the problem of only filtering searching through the visible expanded directories).

And for the default mode. highlight or filter. You can change that with:

"workbench.list.defaultFindMode": "highlight"
"workbench.list.defaultFindMode": "filter"

enter image description here

Only the open folders and visible elements Problem and what are we at?

It's great to know about this feature. But then you'll soon encounter the limitation it has at the moment.

Filtering only through open directories. It can help great. But then we want to filter through all. And when the project is big. That becomes totally unusable.

Issues: 1, 2, 3

We can see it's added to the backlog here: https://github.com/microsoft/vscode/issues/116286

duplicates: 1

You may think:

Expand all

Ok what about expanding all. Then using this. ===> That would work great => But => There is no such a feature of expanding all now.

Issues: 1, 2, duplicates: 1

Some configuration

At the moment no configuration does help!

"workbench.list.keyboardNavigation": "filter"

doesn't and many others. I tried them all. For the moment!

Extension that does that probably using web view

None exists. And to be implemented one needs to figure out the indexation used by vscode. Or implement its own indexation and then fuzzy search through using indexes. Otherwise something more simple that works for no big directories. Can be built fast. [I don't have time to do it myself. Especially that this would be resolved sometime in the future and we still can work with CTRL|CMD + P]

So that to clear for you the thoughts that you may get. And save you time.

Resume

So shortly we may see the feature of filtering all in a future version of vscode as it was added to the backlog. Right now we will be waiting. And maybe long enough.

Expand all seems not to be coming at any time or any time soon.

✨ So what now? Left with nothing? Here is a WORKAROUND ✨

The now is => use CTRL|CMD + F on visible things. or on folders. By manually expanding them.

Or use CTRL|CMD + P without closing it. By following the next rules:

enter image description here

  • To open multiple files in the same editor. Navigate up and down and for each file use Right Arrow.
  • When they open they will be opened beside each other. You can use CMD|CTRL + ALT + LEFT | RIGHT to navigate between tabs left and right. Faster and better with the keyboard. The last open is the one you'll be at when you close the pallet.
  • To open a file in a new split editor use ALT + RIGHT ARROW.

Ref: 1

UPDATE 26/07/2023 (vscode 1.80.1):

  • Nothing useful. Except for some new features. But filtering is the same.

As of now the search and filter in the file explorer are as follows:

enter image description here

  • Fuzzy match is added 🔥
  • The filter is always there

Here a preview of the fuzzy search

enter image description here

Otherwise here are some notes on the current state:

  • When you use the filtering, it will filter only what is visible
    • (No change)
  • Always no option for expanding all.
    • (no change)
  • If you click on a folder and the folder has no sub dir, if it contains something it would show, if not it would disappear.
    • Simply because when you expand, all become visible, then filtering applies.
  • Search navigation added 🔥
    • If you search for something. And results are found. You can navigate by the Up and down keys.
    • That was demonstrated on the fuzzy search gif example above.

Here are some previews that show how, if the project structure is small. You still can find the filtering on the explorer good for many use cases.

  • Navigation

enter image description here

  • Filtering

enter image description here

 - Even if not found, the search in visible only. So you have to check folders

enter image description here

 - You can still navigate and filter in such a manner.
 - It can still be useful. Depending on your case and the size of the project.
 - Specially if you needed to go through project structure.
 - Otherwise, the workaround by the command pallet is our best solid tool 🔥.

enter image description here

 - In big projects. Or directory it's totally useless.
 - (no one wants to play super Mario).

enter image description here

 - Once you go through all
 - Disable the filtering and u get all expanded
 - activate filter again, and filtering go right (already all is expanded)
answered Aug 23, 2022 at 13:20

7 Comments

as of October 2022 this is the only correct answer. Thanks!
no it doesn't work. It will filter files that are in the expanded folders, but it will not search files in your workspace.
This is totally unusable for big folder trees, since it does not search for files which are not in expanded folders.
I do agree. At first, when I wrote I didn't pay attention. Then I was busy with life to update the answer. I just did. So that people don't fall for that deception. you can check the update. Unfortunately, we are bound to wait. There isn't a way now. I included the logical workaround that we can go for at the moment.
@MaxCascone Thank you very much. For the shortcut at least for me, it's CMD + F without OPT and it works when the explorer is focused. If is not, one can focuse it first and that would comes to CMD + E to focus, followed by CMD + F. For me CMD + OPT + F Didn't work if not focused, and if focused, i take it as CMD + F Taking effect and i wonder. I will add this details. Plus update the answer to include the latest state, as now the search is full and fixed.
|
24

Also works in ubuntu with Ctrl+E

Misha Akopov
13.2k27 gold badges73 silver badges87 bronze badges
answered Jun 16, 2017 at 12:52

2 Comments

Works on Windows 7 as well!
Works for me on Windows 10!
20

You can also press F1 to open the Command Palette and then remove the > via Backspace. Now you can search for files, too.

answered Apr 4, 2018 at 10:49

3 Comments

This is the same as pressing Cmd + P
One difference is, this method is cross-platform
This is a good answer, but sadly this also lists files outside of the scope of the project, at least in my case.
19

The problem with Ctrl+P (or Cmd+P) is that it searches your workspace while ignoring files and folders set in the .gitignore file. To change this behavior, add "search.useIgnoreFiles": false in your settings.json file under .vscode directory.

NOTE that search.exclude and files.exclude settings will override this. So, in your settings.json file, you should comment them out or set these two settings to false as well if you want to search all the files and directories in your VS Code project. An example for settings.json where search.exclude and files.exclude are commented out for searching all the files:

{
 "search.exclude": {
 //"**/Lib": true,
 //"**/Scripts": true
 },
 "files.exclude": {
 //"**/Lib": true,
 //"**/Scripts": true
 },
 "search.useIgnoreFiles": false
}

Look here for more info.

answered Oct 24, 2021 at 18:01

1 Comment

Is there any way to quickly disable excluded files for just a single search instead of modifying the settings?
16

consider you have thousand of files in vs code and you want to search for a file with particular name then

  1. Right click VS code editor.
  2. Select Command Palete
  3. In the text box type the file name

enter image description here

enter image description here

answered Feb 20, 2018 at 5:38

1 Comment

Need to press backspace when inside the Command Palette, before starting to type file name.
13

I'm using VSCode 1.12.1

OSX press : Cmd + p

answered May 6, 2017 at 12:23

Comments

13

If you just want to search a single file name

Just Ctrl+P, then type and choose your one

If you want to open all files whose name contains a particular string

  1. Open search panel
  2. Put any common words inside those files
  3. in 'files to include', put the search string with *, e.g. *Signaller*

enter image description here

Misha Akopov
13.2k27 gold badges73 silver badges87 bronze badges
answered Dec 3, 2018 at 23:29

5 Comments

The "search panel" is called Find in Files (Ctrl+Shift+F). To access "files to include" you need to click the "..." icon (Toggle Search Details) or 4 times tab, then space and tab again.
Put any common words inside those files. That's the issue. I'd love to find every file with a certain name.
@BernhardDöbler same here!
@BernhardDöbler you can use the regex search and search for .* as a workaround if you're not looking for binary files
Type ^(?<![\w\W]) to search bar after toggling "Use Regex", this regex matches the start of file, so it will list all files once
7

For windows. if Ctrl+p doesn't always work use Ctrl+shift+n instead.

answered Dec 31, 2020 at 22:08

Comments

6

To search for specifil file types in visual studio code.
Type ctrl+p and then search for something like *.py.
Simple and easy

Misha Akopov
13.2k27 gold badges73 silver badges87 bronze badges
answered Aug 2, 2019 at 4:12

Comments

5

If using vscodevim extension, ctrl + p won't work so I saw another answer using:

ctrl + shift + p

which opens the command palette. Hit backspace to remove the '>' and then start typing your filename.

answered Jun 25, 2020 at 19:27

Comments

4

Ok, coming from a big Tmux + Vim user that often wants VSCode to "bend to my will", this is how I looked at it.

  • CMD+P is sub-optimal when you have a large workspace. The alternative here is to "use less folders in the VSCode workspace" (since VSCode cries and buckles it's knees trying to index things as they are even added) / "use more workspaces". If you use less folders and files, then CMD+P fuzzy-search works fine
  • CMD+F is find IN files, not FOR files. If that's your thing, sure, go for it, but I want to find a file deep in a project quickly and open it up, not drill down 10 levels like a cave man.

What I found works best, is this:

  • Click on the folder I am currently working on code changes for on the left side > Open integrated termainl
  • Issue `find src/ -name "something*.ts"
  • CMD + Mouse Click the file and voila! Pops into the editor.

The fact I can't right click or CMD+SHIFT+F can't just show me files when it even prepends the path for "files to include" and deep searches the files anyway.... is bonkers to me. The find mechanism with CMD+SHIFT+ already has the capability, just show me the FILES, not what's IN the files as an option. 90% of the work is already there.

So TL:DR, if you want to find a file quickly in a folder, just open a terminal, find it, and CMD + <Mouse Click>.

answered Mar 31, 2023 at 19:32

1 Comment

Thanks! You expressed my feeling for the last year, since my Vim config died. I can't find a file even if I pass it's full path. My right arm is in pain since, for having to scroll hundreds of folders and sub folders with the mouse.
2

Check your settings for 'Use Ignore Files' and 'Use Global Ignore Files'. If these are checked, VSCode won't search any folders listed in .gitignore or .ignore

answered Jun 4, 2021 at 1:48

Comments

2

I ended up installing the extension File Name Search. It displays in the side navigation bar all files that match a name part, so I can open them one by one to check them or process them.

  • Ctrl + p: we have to repeat the search for each file
  • Ctrl + f in the explorer: it does not search, it just filters files in epanded folders

Here is a demo of a search in explorer followed by a search in the Filename search extension:

enter image description here

answered Oct 27, 2022 at 21:02

Comments

1

With VSCode 1.75 (Jan 2023), you will have a new file filter option: a 'Fuzzy Match' toggle.

That comes from issue 116286: Tree: Support continuous find

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?

Solution: adding a 'Fuzzy Match' toggle button to the tree find widget.

https://user-images.githubusercontent.com/6726799/199584855-b57f8efe-0efa-4e97-8523-6fb26d61a951.gif

New options:

  • defaultFindMatchTypeSettingKey.fuzzy: Use fuzzy matching when searching.
  • defaultFindMatchTypeSettingKey.contiguous': Use contiguous matching when searching.
answered Jan 4, 2023 at 20:57

3 Comments

This is not a real search feature. It is morelike a filtering feature which works with only open folder's content. So, this not a solution for the problem when you want to search in the filenames of the entire application.
@Crepkey yes, I use it all the time to find a file within my project workspace (not just folder).
Interesting... So, you claim you can use this filter feature to find any file in your project even though all of your folders are closed in the file browser. Could you please present it somehow here? Maybe, we are wrong and you know the truth. Many thanks :)
1

tl;dr

Use right arrow key!
Opens files in tabs, without closing current search!!!


Full Steps

⌘+p
🔎
⬆️ / ⬇️
➡️

In-depth / Explanation

1 Open command palette

cmd + p

2 Search

Type name of file you're searching for

3 Up/Down Highlight

Use up/down arrows to highlight file you want to open

4 Right Arrow

Use right arrow key to open highlighted file in new tab

answered Jul 26, 2023 at 20:26

Comments

1

2024 solution finding file with SEARCH view

Demo: https://i.imgur.com/2CJy9ix.png

  1. Go to SEARCH ( Ctrl + Shift + F )
  2. Enter phrase for searching first char regex : ^(?<!\n).
  3. Enable option in this input Use Regular Expression (Alt + R)
  4. Focus on files to include
  5. Type *
  6. Before * start typing file name

Search works for filenames!

Bonus: You can switch to View as List or Tree in Search options

This regex variations see: https://stackoverflow.com/a/60091371

answered Oct 18, 2024 at 4:21

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.