Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/document.rs')
| -rw-r--r-- | helix-view/src/document.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index f74f15c6..9b3b4548 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -1489,19 +1489,6 @@ impl Document { }); } - if emit_lsp_notification { - // TODO: move to hook - // emit lsp notification - for language_server in self.language_servers() { - let _ = language_server.text_document_did_change( - self.versioned_identifier(), - &old_doc, - self.text(), - changes, - ); - } - } - true } |