]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Remove debug message
authorYegappan Lakshmanan <yegappan@yahoo.com>
Sat, 12 Nov 2022 05:16:20 +0000 (21:16 -0800)
committerYegappan Lakshmanan <yegappan@yahoo.com>
Sat, 12 Nov 2022 05:16:20 +0000 (21:16 -0800)
autoload/lsp/lspserver.vim

index 0b850552a673c207ac75867a3056e56563457e0d..88bda4b95b34ce121f46453669c96587b2914b90 100644 (file)
@@ -1177,12 +1177,9 @@ def DidSaveFile(lspserver: dict<any>, bnr: number): void
   # Check whether the LSP server supports the didSave notification
   if !lspserver.supportsDidSave
     # LSP server doesn't support text document synchronization
-    echomsg "Doesn't support didSave notification"
     return
   endif
 
-  echomsg "Sending didSave notification"
-
   # Notification: 'textDocument/didSave'
   # Params: DidSaveTextDocumentParams
   var params = {textDocument: {uri: util.LspBufnrToUri(bnr)}}