Skip to content

Commit 5a4be2c

Browse files
authored
Resolve ${userHome} in settings. (#14090)
1 parent 4d6f27d commit 5a4be2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,8 @@ export class DefaultClient implements Client {
10031003
workspaceFolderBasename: this.Name,
10041004
workspaceStorage: this.workspaceStoragePath,
10051005
execPath: process.execPath,
1006-
pathSeparator: (os.platform() === 'win32') ? "\\" : "/"
1006+
pathSeparator: (os.platform() === 'win32') ? "\\" : "/",
1007+
userHome: os.homedir()
10071008
};
10081009
}
10091010

0 commit comments

Comments
 (0)