View Source GenLSP.Structures.NotebookCellTextDocumentFilter (gen_lsp v0.10.0)
A notebook cell text document filter denotes a cell text document by different properties.
@since 3.17.0
Link to this section Summary
Functions
Fields
notebook: A filter that matches against the notebook containing the notebook cell. If a string value is provided it matches against the notebook type. '*' matches every notebook.
Link to this section Types
@type t() :: %GenLSP.Structures.NotebookCellTextDocumentFilter{ language: String.t() | nil, notebook: String.t() | GenLSP.TypeAlias.NotebookDocumentFilter.t() }
Link to this section Functions
fields
Fields
notebook: A filter that matches against the notebook containing the notebook cell. If a string value is provided it matches against the notebook type. '*' matches every notebook.
language: A language id like
python
.Will be matched against the language id of the notebook cell document. '*' matches every language.