You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/matlab.rs
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,6 @@ impl zed::Extension for MatlabExtension {
12
12
_language_server_id:&LanguageServerId,
13
13
worktree:&zed::Worktree,
14
14
) -> Result<zed::Command>{
15
-
// Check if matlab_ls is available in PATH
16
15
ifletSome(path) = worktree.which("matlab_ls"){
17
16
returnOk(zed::Command{
18
17
command: path,
@@ -21,7 +20,11 @@ impl zed::Extension for MatlabExtension {
21
20
});
22
21
}
23
22
24
-
Err("matlab_ls not found in PATH. Please install the MATLAB language server. See https://github.com/watermarkhu/zed-matlab for installation instructions.".to_string())
23
+
Err(
24
+
"matlab_ls not found in PATH. Please install the MATLAB language server. \
25
+
See https://github.com/zed-extensions/matlab for installation instructions."
0 commit comments