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

Link to this section Summary

Functions

Fields

  • supported: The server has support for workspace folders

Link to this section Types

@type t() :: %GenLSP.Structures.WorkspaceFoldersServerCapabilities{
  change_notifications: (String.t() | boolean()) | nil,
  supported: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.WorkspaceFoldersServerCapabilities{}

View Source (struct)

fields

Fields

  • supported: The server has support for workspace folders

  • change_notifications: Whether the server wants to receive workspace folder change notifications.

    If a string is provided the string is treated as an ID under which the notification is registered on the client side. The ID can be used to unregister for these events using the client/unregisterCapability request.