mirror of https://github.com/golang/go.git
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
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")
|