View Source GenLSP.Requests.WorkspaceSymbol (gen_lsp v0.10.0)
A request to list project-wide symbols matching the query string given by the {@link WorkspaceSymbolParams}. The response is of type {@link SymbolInformation SymbolInformation[]} or a Thenable that resolves to such.
@since 3.17.0 - support for WorkspaceSymbol in the returned data. Clients
need to advertise support for WorkspaceSymbols via the client capability
workspace.symbol.resolveSupport
.
Message Direction: clientToServer
Link to this section Summary
Link to this section Types
@type result() :: [GenLSP.Structures.SymbolInformation.t()] | [GenLSP.Structures.WorkspaceSymbol.t()] | nil
@type t() :: %GenLSP.Requests.WorkspaceSymbol{ id: integer(), jsonrpc: String.t(), method: String.t(), params: GenLSP.Structures.WorkspaceSymbolParams.t() | nil }