]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Add a space before function return type
authorYegappan Lakshmanan <yegappan@yahoo.com>
Sun, 14 Nov 2021 16:31:53 +0000 (08:31 -0800)
committerYegappan Lakshmanan <yegappan@yahoo.com>
Sun, 14 Nov 2021 16:31:53 +0000 (08:31 -0800)
autoload/lsp.vim

index 66e43e807091e28097c5bd67c00a0a0c80ffd869..932aa95e48ca7900e07d4c64b0e055a301bf25b1 100644 (file)
@@ -534,7 +534,7 @@ def lsp#showCurrentDiag()
 enddef
 
 # get the count of error in the current buffer
-def lsp#errorCount():dict<number>
+def lsp#errorCount(): dict<number>
   var res = {'Error': 0, 'Warn': 0, 'Info': 0, 'Hint': 0}
   var ftype = &filetype
   if ftype == ''