From 6afd48c81185b90eb9a804889d81605d24c7a874 Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Sun, 14 Nov 2021 08:31:53 -0800 Subject: [PATCH] Add a space before function return type --- autoload/lsp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/lsp.vim b/autoload/lsp.vim index 66e43e8..932aa95 100644 --- a/autoload/lsp.vim +++ b/autoload/lsp.vim @@ -534,7 +534,7 @@ def lsp#showCurrentDiag() enddef # get the count of error in the current buffer -def lsp#errorCount():dict +def lsp#errorCount(): dict var res = {'Error': 0, 'Warn': 0, 'Info': 0, 'Hint': 0} var ftype = &filetype if ftype == '' -- 2.48.1