fix: allow LSP filename matching when extension is missing (#2975)
parent
080fce9601
commit
f41a54b4b0
|
|
@ -113,7 +113,7 @@ export namespace LSP {
|
|||
|
||||
async function getClients(file: string) {
|
||||
const s = await state()
|
||||
const extension = path.parse(file).ext
|
||||
const extension = path.parse(file).ext || file
|
||||
const result: LSPClient.Info[] = []
|
||||
for (const server of Object.values(s.servers)) {
|
||||
if (server.extensions.length && !server.extensions.includes(extension)) continue
|
||||
|
|
|
|||
Loading…
Reference in New Issue