From: Yegappan Lakshmanan Date: Sun, 14 Nov 2021 16:31:53 +0000 (-0800) Subject: Add a space before function return type X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6afd48c81185b90eb9a804889d81605d24c7a874;p=vim-lsp.git Add a space before function return type --- 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 == ''