avoliva
avoliva

Reputation: 3356

VSCode: Quick open using directory path

I know in VSCode you can use Ctrl+P to quick open a file, though it only seems to work for file names. That's not really useful for large python projects when every directory has __init__.py files. Is there any way I can quick open files by typing in directory/__init__.py to target files more specifically? Sublime Text includes this functionality so it seems strange that VSCode would exclude this.

Upvotes: 2

Views: 252

Answers (1)

avoliva
avoliva

Reputation: 3356

Figured out the issue. Seems the parent folder names are excluded. For example, if I add a folder named directory to the project, I can't search using directory/folder/filename, but only folder/filename. Still not very useful multiple directories in project with similar file structures.

Upvotes: 1

Related Questions