In my VS Code workspace I want to open a file by its name.
For example my workspace is a directory with has a few directories with each, say, a couple of hundred files and I look for a file with the name:
mycompanyname_abc_def.hs Many files start with mycompanyname but only this file contains abc in its filename. So preferably I'd like to find the file by just typing abc.
I know about Ctrl-P and Ctrl-R. They find the file if I have opened it before or if the file is in the workspace's top folder, but is there a command like Ctrl-P that finds any file in the workspace even if it is in a subfolder?
If VS Code doesn't have this out of the box, do any extensions exist providing this type of search/opening behaviour?
PS: Of course there is the normal system open dialog via Ctrl-O, but in my case (Barebone RHEL Linux) the Open Dialog does not provide any search functionality, only "select by click".