mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-20 01:12:15 +00:00
fix: allow LSP filename matching when extension is missing (#2975)
This commit is contained in:
parent
080fce9601
commit
f41a54b4b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue