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
@@ -228,3 +230,36 @@ The following settings can be added to the `.sublime-project` file to adapt the
228
230
}
229
231
}
230
232
```
233
+
234
+
Extras
235
+
------
236
+
237
+
### Open/end statement pairing
238
+
239
+
AutoMatlab recognizes paired open statements (e.g., `if`, `for`, `function`) and end statements. When the cursor is in an open or end statement, the following popup about the paired statement
240
+
241
+

242
+
243
+
can be triggered with command:
244
+
245
+
```json
246
+
{
247
+
"caption": "AutoMatlab: Pair open+end statement",
248
+
"command": "pair_matlab_statements",
249
+
"args": {"action": "popup"},
250
+
}
251
+
```
252
+
253
+
There are also commands to directly jump between open/end statements or to select all enclosed code:
0 commit comments