Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the "recently opened" list from the quick open panel in VS Code?

Using the quick open shortcut (CTRL/CMD + P) to navigate files always put the recently opened files first, then the file results.

I would like it to show me only the file results, or at least put them first, but I can't find any options that would do this. Does it exists? Or do I just lack the right term to search ?

like image 307
Jean-Philippe Murray Avatar asked Oct 14 '22 23:10

Jean-Philippe Murray


1 Answers

Use this in your VS Code settings (Code -> Preferences -> Settings in macOS, File > Preferences > Settings on Windows/Linux). Open the Settings in JSON format (document icon on the top right of the tab bar), and add:

"search.quickOpen.includeHistory": false
like image 168
Hejazzman Avatar answered Oct 18 '22 14:10

Hejazzman