We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08df9ce commit e2ee5cbCopy full SHA for e2ee5cb
README.md
@@ -27,6 +27,9 @@ MATLAB language server supports these editors by installing the corresponding ex
27
28
### Unreleased
29
30
+Fixed:
31
+* Leading or trailing whitespace in `installPath` setting is ignored when connecting to MATLAB
32
+
33
### 1.2.4
34
Release date: 2024-07-12
35
src/lifecycle/MatlabSession.ts
@@ -387,7 +387,7 @@ async function getMatlabLaunchCommand (outFile: string): Promise<{ command: stri
387
let command = 'matlab'
388
if (matlabInstallPath !== '') {
389
command = path.normalize(path.join(
390
- matlabInstallPath,
+ matlabInstallPath.trim(),
391
'bin',
392
'matlab'
393
))
0 commit comments