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

Link to this section Summary

Functions

Fields

  • glob_pattern: The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.

Link to this section Types

@type t() :: %GenLSP.Structures.FileSystemWatcher{
  glob_pattern: GenLSP.TypeAlias.GlobPattern.t(),
  kind: GenLSP.Enumerations.WatchKind.t() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.FileSystemWatcher{}

View Source (struct)

fields

Fields

  • glob_pattern: The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.

    @since 3.17.0 support for relative patterns.

  • kind: The kind of events of interest. If omitted it defaults to WatchKind.Create | WatchKind.Change | WatchKind.Delete which is 7.