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: CHANGELOG.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [1.3.11] - 2026-05-08
11
+
12
+
### Added
13
+
- Support for creating and opening MATLAB projects (Addresses [mathworks/MATLAB-extension-for-vscode#123](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/123))
14
+
- Warnings in the MATLAB terminal now appear in yellow (Community contribution from @philipb314)
15
+
- Improved contextual syntax highlighting for function and variable names (Community contribution from @Gustaf-C - Addresses [mathworks/MATLAB-extension-for-vscode#45](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/45))
16
+
17
+
### Fixed
18
+
- Resolves an issue with breakpoints in non‑existent files (Addresses [mathworks/MATLAB-extension-for-vscode#312](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/312))
19
+
- Resolves an issue affecting the display of the `input` command prompt (Addresses [mathworks/MATLAB-extension-for-vscode#198](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/198))
20
+
- Applied patches for CVE-2026-2950, CVE-2026-4800, CVE-2026-33671, CVE-2026-33672, and CVE-2026-33750
21
+
10
22
## [1.3.10] - 2026-04-02
11
23
12
24
### Fixed
13
-
- Resolves an issue where output is wrapping incorrectly in the MATLAB Terminal. (Address[mathworks/MATLAB-extension-for-vscode#316](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/316))
25
+
- Resolves an issue where output is wrapping incorrectly in the MATLAB terminal. (Addresses[mathworks/MATLAB-extension-for-vscode#316](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/316))
14
26
- Syntax highlighting improvements (Community contribution from @Gustaf-C)
15
27
- Resolves potential memory leaks when the extension is disabled.
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ If you have MATLAB R2021b or later installed on your system, you have access to
36
36
To run a MATLAB code file in Visual Studio Code, click the Run button at the top of the file. You also can use the `Run File` or `Run Current Selection` commands. When you run the file, output displays in the "Terminal" pane of Visual Studio Code. You also can enter MATLAB code directly in the MATLAB terminal. To stop execution of MATLAB code, press **Ctrl+C**.
37
37
38
38
To debug a MATLAB code file, add breakpoints to the file by clicking the area to the left of an executable line. Then run the file. Visual Studio Code stops at the first breakpoint.
39
-
When Visual Studio Code is paused, you can use the **Debug toolbar** to peforms debugging actions such as **Continue**, **Step into**, and **Stop**. You also can enter commands in the MATLAB terminal to perform debug actions or change variable values. Use the **Run and Debug** view to see your workspace variables, watch points, and call stack.
39
+
When Visual Studio Code is paused, you can use the **Debug toolbar** to peform debugging actions such as **Continue**, **Step into**, and **Stop**. You also can enter commands in the MATLAB terminal to perform debug actions or change variable values. Use the **Run and Debug** view to see your workspace variables, watch points, and call stack.
40
40
41
41

42
42
@@ -47,6 +47,15 @@ There are some limitations to running and debugging MATLAB code in Visual Studio
47
47
* When using the **dbstop** and **dbclear** functions to set and clear breakpoints, the breakpoints are added to file but are not shown in Visual Studio Code.
48
48
* Variable values changed in the MATLAB terminal when Visual Studio Code is paused do not update in the **Run and Debug** view until the next time Visual Studio Code pauses.
49
49
50
+
## Work with MATLAB Projects
51
+
If you have MATLAB R2021b or later installed on your system, you can work with MATLAB Projects directly in Visual Studio Code. You can create new projects, open existing projects, and close the current project.
52
+
53
+
To create a new project, right-click a folder in the Explorer and select **MATLAB: Project > MATLAB: New Project**. To open an existing project, right-click a project file or a folder that contains a project and select **MATLAB: Project > MATLAB: Open Project**.
54
+
55
+
When a project is open, Visual Studio Code shows the project name in the status bar.
You also can use this extension along with the Jupyter Extension for Visual Studio Code to run MATLAB in Jupyter notebooks using Visual Studio Code. For instructions, see [Run MATLAB in Jupyter Notebooks Using VS Code](https://github.com/mathworks/jupyter-matlab-proxy/blob/main/install_guides/vscode/README.md).
0 commit comments