mirror of
https://github.com/c-cube/linol.git
synced 2025-12-06 11:15:46 -05:00
fix: better options for config sync opts
This commit is contained in:
parent
066577c4db
commit
3e42640335
1 changed files with 3 additions and 1 deletions
|
|
@ -111,7 +111,9 @@ module Make(IO : IO) = struct
|
||||||
(** Parameter for how to synchronize content with the editor *)
|
(** Parameter for how to synchronize content with the editor *)
|
||||||
method config_sync_opts : TextDocumentSyncOptions.t =
|
method config_sync_opts : TextDocumentSyncOptions.t =
|
||||||
TextDocumentSyncOptions.create
|
TextDocumentSyncOptions.create
|
||||||
~change:TextDocumentSyncKind.Incremental ~willSave:false ()
|
~change:TextDocumentSyncKind.Incremental ~openClose:true
|
||||||
|
~save:(SaveOptions.create ~includeText:false ())
|
||||||
|
~willSave:false ()
|
||||||
|
|
||||||
method config_completion : CompletionOptions.t option = None
|
method config_completion : CompletionOptions.t option = None
|
||||||
(** Configuration for the completion API.
|
(** Configuration for the completion API.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue