Skip to content

Commit d74956e

Browse files
committed
Fixes
1 parent fa77294 commit d74956e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fetch from "node-fetch";
2-
import { isAbsolute, join, dirname } from "path";
32
import { parse, walk } from "css-tree";
3+
import { isAbsolute, join, dirname } from "path";
44
import {
55
CancellationToken,
66
CompletionContext,
@@ -75,7 +75,7 @@ export class ClassCompletionItemProvider implements CompletionItemProvider, Disp
7575
? join(isAbsolute(key)
7676
? folder.uri.fsPath
7777
: dirname(uri.fsPath), key)
78-
: key);
78+
: join(dirname(uri.fsPath), key));
7979

8080
workspace.fs.readFile(file).then(content => {
8181
const items = new Map<string, CompletionItem>();

0 commit comments

Comments
 (0)