Fix capitalisation error in MissingServers()

This commit is contained in:
Danielle McLean 2023-10-28 13:16:51 +11:00
parent 63ef047b16
commit e41768aa34
Signed by: 00dani
GPG key ID: 52C059C3B22A753E

View file

@ -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>