Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any trick to make Visual Studio Code Quick Open faster?

Quick Open is a must-have feature in any IDE, but in Visual Studio Code (by default bound to cmd+e on Mac) it seems to be very slow in finding anything. Is there any configuration option/trick to make it faster by indexing files etc.?

like image 449
passo Avatar asked Jul 07 '15 10:07

passo


2 Answers

We plan to add indexing in future updates. Until then you can configure to exclude more folders from searches. The setting is called search.exclude and allows to set patterns.

Btw quick open learns about files you open often and keeps those in a MRU list. Quick open should be fast for those files.

like image 161
Benjamin Pasero Avatar answered Nov 15 '22 16:11

Benjamin Pasero


This extension might be useful for opening files faster: https://marketplace.visualstudio.com/items/astral-keks.folder-indexing

It allows user to navigate to any file in workspace by just typing part of its name in editbox opened by workbench.action.showAllSymbols (Go To Symbol In Workspace) command.

like image 42
Astral KeKs Avatar answered Nov 15 '22 18:11

Astral KeKs