Hello,
I wanted a productivity tool for jumping to anything (script, scene object, prefab, or whatever).
Quick Search seems perfect.
However, I had a huge amount of hassle getting the shortcut to work!
The menu says: Alt + ’ , as does google.
This does nothing.
After a while of trawling through the Quick Search Package source code, I found this:
[UsedImplicitly, Shortcut("Help/Quick Search", KeyCode.O, ShortcutModifiers.Alt | ShortcutModifiers.Shift)]
private static void OpenQuickSearch()
{
OpenDefaultQuickSearch();
}
…so, the code says the shortcut is Alt + Shift + O, which works!
Now for the rant:
What’s going on here? Seriously, the number one most important thing about getting the most out of a productivity tool is a good shortcut. Why was it so hard to find the shortcut? - is it configurable somewhere?
I’m confused.