diff --git a/crates/hdx_lsp/src/service.rs b/crates/hdx_lsp/src/service.rs index 2272133d..ff69717a 100644 --- a/crates/hdx_lsp/src/service.rs +++ b/crates/hdx_lsp/src/service.rs @@ -153,7 +153,7 @@ impl Handler for LSPService { text_document_sync: Some(lsp_types::TextDocumentSyncCapability::Options( lsp_types::TextDocumentSyncOptions { open_close: Some(true), - change: Some(lsp_types::TextDocumentSyncKind::FULL), + change: Some(lsp_types::TextDocumentSyncKind::INCREMENTAL), will_save: Some(true), will_save_wait_until: Some(false), save: Some(lsp_types::TextDocumentSyncSaveOptions::Supported(false)),