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

Options specific to a notebook plus its cells to be synced to the server.

If a selector provides a notebook document filter but no cell selector all cells of a matching notebook document will be synced.

If a selector provides no notebook document filter but only a cell selector all notebook document that contain at least one matching cell will be synced.

@since 3.17.0

Link to this section Summary

Functions

Fields

  • notebook_selector: The notebooks to be synced
  • save: Whether save notification should be forwarded to the server. Will only be honored if mode === notebook.

Link to this section Types

@type t() :: %GenLSP.Structures.NotebookDocumentSyncOptions{
  notebook_selector: [map() | map()],
  save: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.NotebookDocumentSyncOptions{}

View Source (struct)

fields

Fields

  • notebook_selector: The notebooks to be synced
  • save: Whether save notification should be forwarded to the server. Will only be honored if mode === notebook.