Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/promise-function-async": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"object-shorthand": "off",
"@typescript-eslint/indent": ["error", 4, {
"SwitchCase": 1,
"VariableDeclarator": 1,
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Useful Information**
- MATLAB Version:
- OS Version:
- VS Code Version:

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.3] - 2025-05-15

### Added
- Use automatic code completion to complete commands in the MATLAB terminal
- Move the cursor in the MATLAB terminal using `Alt+Click`
- Support for debugging P-coded files when the corresponding source file is available
- Filter the commands in the MATLAB terminal history by entering text in the terminal (Thanks @robertoffmoura!)

### Fixed
- Resolves issues with the MATLAB workspace not updating correctly when switching contexts in the call stack
- Resolves potential crashes when using code completion in files without a .m file extension
- Patches CVE-2024-12905

## [1.3.2] - 2025-03-06

### Fixed
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Edit MATLAB code with syntax highlighting, linting, navigation support, and more",
"icon": "public/L-Membrane_RGB_128x128.png",
"license": "MIT",
"version": "1.3.2",
"version": "1.3.3",
"engines": {
"vscode": "^1.67.0"
},
Expand Down
4 changes: 3 additions & 1 deletion src/Notifications.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023-2024 The MathWorks, Inc.
// Copyright 2023-2025 The MathWorks, Inc.

enum Notification {
// Connection Status Updates
Expand All @@ -15,6 +15,8 @@ enum Notification {

// Execution
MatlabRequestInstance = 'matlab/request',
TerminalCompletionRequest = 'TerminalCompletionRequest',
TerminalCompletionResponse = 'TerminalCompletionResponse',

MVMEvalRequest = 'evalRequest',
MVMEvalComplete = 'evalResponse',
Expand Down
Loading