In Xcode, when the Outline Menu is open you can type to filter the list and press enter to select an item.
There is also a keyboard shortcut to open the Outline Menu (Ctrl-6).
The search method should allow for abbreviated search. In my experience the best way to do this is to convert abc to a regex pattern .*a.*b.*c.* and then sort results by length - the shortest match is the most likely result.
In Xcode, when the Outline Menu is open you can type to filter the list and press enter to select an item.
There is also a keyboard shortcut to open the Outline Menu (Ctrl-6).
The search method should allow for abbreviated search. In my experience the best way to do this is to convert
abcto a regex pattern.*a.*b.*c.*and then sort results by length - the shortest match is the most likely result.