View Source GenLSP.Structures.WorkspaceSymbolParams (gen_lsp v0.8.1)

The parameters of a {@link WorkspaceSymbolRequest}.

Link to this section Summary

Functions

Fields

  • query: A query string to filter symbols by. Clients may send an empty string here to request all symbols.
  • work_done_token: An optional token that a server can use to report work done progress.
  • partial_result_token: An optional token that a server can use to report partial results (e.g. streaming) to the client.

Link to this section Types

@type t() :: %GenLSP.Structures.WorkspaceSymbolParams{
  partial_result_token: GenLSP.TypeAlias.ProgressToken.t() | nil,
  query: String.t(),
  work_done_token: GenLSP.TypeAlias.ProgressToken.t() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.WorkspaceSymbolParams{}

View Source (struct)

fields

Fields

  • query: A query string to filter symbols by. Clients may send an empty string here to request all symbols.
  • work_done_token: An optional token that a server can use to report work done progress.
  • partial_result_token: An optional token that a server can use to report partial results (e.g. streaming) to the client.