From d892b7a4d33f64a6e4a05133c3d8823c7185abaf Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Fri, 11 Nov 2022 21:16:20 -0800 Subject: [PATCH] Remove debug message --- autoload/lsp/lspserver.vim | 3 --- 1 file changed, 3 deletions(-) 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)}} -- 2.48.1