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
- Improvements to code folding (requires MATLAB R2024b or later)
32
43
33
44
### Fixed
@@ -42,7 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
53
- This extension will no longer support MATLAB R2021a in a future release. To make use of the advanced features of the extension or run MATLAB code, you will need to have MATLAB R2021b or later installed.
43
54
44
55
### Added
45
-
- Popups will be shown to inform the user when the connected MATLAB is not supported by the extension, or if support is planned to be removed in a future update.
56
+
- Popups will be shown to inform when the connected MATLAB is not supported by the extension, or if support is planned to be removed in a future update.
46
57
47
58
### Fixed
48
59
- Resolved issue with connecting to Intel MATLAB installation on Apple Silicon machines
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -81,9 +81,17 @@ You can help improve the extension by sending user experience information to Mat
81
81
82
82
For more information, see the [MathWorks Privacy Policy](https://www.mathworks.com/company/aboutus/policies_statements.html).
83
83
84
-
### MATLAB Show Feature Not Available Error
84
+
### MATLAB Show Feature Not Available Error Setting
85
85
By default, the extension displays an error when a feature requires MATLAB and MATLAB is unable to start. To not display an error, set the `matlab.showFeatureNotAvailableError` setting to `false`.
86
86
87
+
### MATLAB Max File Size for Analysis Setting
88
+
By default, the extension analyzes all files, regardless of their size, for features such as linting, code navigation, and symbol renaming. To limit the maximum number of characters a file can contain, set the `matlab.maxFileSizeForAnalysis` setting. For example, to limit the number of characters to 50,000, set the `matlab.maxFileSizeForAnalysis` setting to `50000`. If a file contains more than the maximum number of characters, features such as linting, code navigation, and symbol renaming are disabled for that file. To remove the limit and analyze all files regardless of their size, set the `matlab.maxFileSizeForAnalysis` setting to `0`.
89
+
90
+
### MATLAB Sign In Setting
91
+
By default, the extension assumes that the MATLAB installation specified in the Install Path setting is activated.
92
+
93
+
To enable browser-based sign in to your MathWorks account using the Online License Manager or a Network License Manager, set the `matlab.signIn` setting to true. When this setting is enabled, the extension prompts you to sign in when it starts MATLAB.
94
+
87
95
## Troubleshooting
88
96
If the MATLAB install path is not properly configured, you get an error when you try to use certain advanced features, such as document formatting and code navigation.
"markdownDescription": "The full path to the top-level directory of the MATLAB installation you want to use with this extension. You can determine the full path to your MATLAB installation using the `matlabroot` command in MATLAB. For more information, refer to the [README](https://github.com/mathworks/MATLAB-extension-for-vscode/blob/main/README.md). This setting can be specified for both the user and workspace setting scopes using the User and Workspace tabs above.",
159
-
"scope": "window"
163
+
"scope": "machine-overridable"
160
164
},
161
165
"MATLAB.matlabConnectionTiming": {
162
166
"type": "string",
@@ -190,14 +194,27 @@
190
194
"usesOnlineServices"
191
195
]
192
196
},
197
+
"MATLAB.signIn": {
198
+
"type": "boolean",
199
+
"default": false,
200
+
"markdownDescription": "Enable this option to present Sign In Options for unactivated MATLAB installations.",
201
+
"scope": "machine"
202
+
},
193
203
"MATLAB.showFeatureNotAvailableError": {
194
204
"type": "boolean",
195
205
"default": true,
196
206
"description": "Display an error when a feature requires MATLAB and MATLAB is unable to start.",
197
207
"scope": "window"
208
+
},
209
+
"MATLAB.maxFileSizeForAnalysis": {
210
+
"type": "number",
211
+
"default": 0,
212
+
"markdownDescription": "The maximum number of characters a file can contain for features such as linting, code navigation, and symbol renaming to be enabled. Use `0` for no limit.",
0 commit comments