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

The parameters of a {@link ExecuteCommandRequest}.

Link to this section Summary

Functions

Fields

  • command: The identifier of the actual command handler.
  • arguments: Arguments that the command should be invoked with.
  • work_done_token: An optional token that a server can use to report work done progress.

Link to this section Types

@type t() :: %GenLSP.Structures.ExecuteCommandParams{
  arguments: [GenLSP.TypeAlias.LSPAny.t()] | nil,
  command: String.t(),
  work_done_token: GenLSP.TypeAlias.ProgressToken.t() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.ExecuteCommandParams{}

View Source (struct)

fields

Fields

  • command: The identifier of the actual command handler.
  • arguments: Arguments that the command should be invoked with.
  • work_done_token: An optional token that a server can use to report work done progress.