]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Rename "lspServers" to "LSPServers"
authorAndreas Louv <andreas@louv.dk>
Tue, 11 Apr 2023 14:40:02 +0000 (16:40 +0200)
committerAndreas Louv <andreas@louv.dk>
Tue, 11 Apr 2023 15:09:11 +0000 (17:09 +0200)
autoload/lsp/lsp.vim

index 8d9c65cb0ab66303d379cccf44ce62e4ec734e2e..893a9499c9b71d47ca4cbbe0c0d9e812b7b988ef 100644 (file)
@@ -23,7 +23,7 @@ import './codeaction.vim'
 import './inlayhints.vim'
 
 # LSP server information
-var lspServers: list<dict<any>> = []
+var LSPServers: list<dict<any>> = []
 
 # filetype to LSP server map
 var ftypeServerMap: dict<list<dict<any>>> = {}
@@ -445,7 +445,7 @@ enddef
 
 # Stop all the LSP servers
 export def StopAllServers()
-  for lspserver in lspServers
+  for lspserver in LSPServers
     if lspserver.running
       lspserver.stopServer()
     endif