From: Yegappan Lakshmanan Date: Sat, 12 Nov 2022 05:16:20 +0000 (-0800) Subject: Remove debug message X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d892b7a4d33f64a6e4a05133c3d8823c7185abaf;p=vim-lsp.git Remove debug message --- diff --git a/autoload/lsp/lspserver.vim b/autoload/lsp/lspserver.vim index 0b85055..88bda4b 100644 --- a/autoload/lsp/lspserver.vim +++ b/autoload/lsp/lspserver.vim @@ -1177,12 +1177,9 @@ def DidSaveFile(lspserver: dict, 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)}}