Fix capitalisation error in MissingServers()
This commit is contained in:
parent
63ef047b16
commit
e41768aa34
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ def InstalledServers(): list<dict<any>>
|
|||
enddef
|
||||
|
||||
def MissingServers(): list<dict<any>>
|
||||
return lspServers->deepcopy()->filter((_, server): bool => !server->isInstalled())
|
||||
return lspServers->deepcopy()->filter((_, server): bool => !server->IsInstalled())
|
||||
enddef
|
||||
|
||||
def ListMissingServers(argLead: string, cmdLine: string, cursorPos: number): list<string>
|
||||
|
|
Loading…
Reference in a new issue