1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
package main
// Contains all of the workspace symbol queries.
// -- Fuzzy matching --
//@workspacesymbolfuzzy("rgop")
//@workspacesymbolfuzzy("randoma")
//@workspacesymbolfuzzy("randomb")
// -- Case sensitive --
//@workspacesymbolcasesensitive("main.main")
//@workspacesymbolcasesensitive("p.Message")
//@workspacesymbolcasesensitive("main.myvar")
//@workspacesymbolcasesensitive("main.myType")
//@workspacesymbolcasesensitive("main.myType.Blahblah")
//@workspacesymbolcasesensitive("main.myStruct")
//@workspacesymbolcasesensitive("main.myStruct.myStructField")
//@workspacesymbolcasesensitive("main.myInterface")
//@workspacesymbolcasesensitive("main.myInterface.DoSomeCoolStuff")
//@workspacesymbolcasesensitive("main.embed.myStruct")
//@workspacesymbolcasesensitive("main.embed.nestedStruct.nestedStruct2.int")
//@workspacesymbolcasesensitive("main.embed.nestedInterface.myInterface")
//@workspacesymbolcasesensitive("main.embed.nestedInterface.nestedMethod")
//@workspacesymbolcasesensitive("dunk")
//@workspacesymbolcasesensitive("Dunk")
// -- Standard --
//@workspacesymbol("")
//@workspacesymbol("randomgophervar")
|