vscode-intelephense
vscode-intelephense copied to clipboard
Wider fuzzy search in "Go to symbol in workspace"?
Not sure if I am doing something wrong or there is a configuration issue, but having the following functions:
something_great_entity_insert() something_notgreat_entity_insert()
I would like a way to quickly search for something_WHATEVER_entity_insert(). On sublime you'd do, something_ entityinsert
(with a space in between), but if you do this on vscode, the space looks for some keyword in the path, not in the name.
Do not enter spaces.
Thanks! It works within the same file, but not in the global CMD+T "Go to symbol in workspace"
I've only recently started using VS Code along with Intelephense and I do miss the fuzzy "go to symbol in workspace" search that all editors provide. This is a good example where a single missing "s" from "finds" causes the search to miss completely:
I would very much appreciate a fix for this as well: in a codebase with tens of thousands of classes and hundreds of thousands of methods, having the ability to navigate with imperfect memory of symbol names is imperative.
Possibly related VS Code issue tickets: microsoft/vscode#33746 and microsoft/vscode#156865.
Possibly related Stack Overflow question: How can I search symbols with partial words in VS Code with IntelliSense?