projects
/
vim-lsp.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec095b5
)
Add a space before function return type
author
Yegappan Lakshmanan <yegappan@yahoo.com>
Sun, 14 Nov 2021 16:31:53 +0000 (08:31 -0800)
committer
Yegappan Lakshmanan <yegappan@yahoo.com>
Sun, 14 Nov 2021 16:31:53 +0000 (08:31 -0800)
autoload/lsp.vim
patch
|
blob
|
history
diff --git
a/autoload/lsp.vim
b/autoload/lsp.vim
index 66e43e807091e28097c5bd67c00a0a0c80ffd869..932aa95e48ca7900e07d4c64b0e055a301bf25b1 100644
(file)
--- 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<number>
+def lsp#errorCount():
dict<number>
var res = {'Error': 0, 'Warn': 0, 'Info': 0, 'Hint': 0}
var ftype = &filetype
if ftype == ''