|
330 | 330 | "properties": {
|
331 | 331 | "micropico.autoConnect": {
|
332 | 332 | "type": "boolean",
|
333 |
| - "scope": "resource", |
| 333 | + "scope": "machine-overridable", |
334 | 334 | "default": true,
|
335 | 335 | "title": "Autoconnect on USB",
|
336 | 336 | "description": "Ignores any 'device address' setting and automatically connects to the top item in the serialport list.",
|
337 | 337 | "order": 2
|
338 | 338 | },
|
339 | 339 | "micropico.manualComDevice": {
|
340 | 340 | "type": "string",
|
341 |
| - "scope": "resource", |
| 341 | + "scope": "machine-overridable", |
342 | 342 | "default": "",
|
343 | 343 | "title": "Manual COM device",
|
344 | 344 | "description": "If autoConnect is set to false MicroPico will automatically connect to the serial port specified here.",
|
345 | 345 | "order": 3
|
346 | 346 | },
|
347 | 347 | "micropico.syncFolder": {
|
348 | 348 | "type": "string",
|
349 |
| - "scope": "resource", |
| 349 | + "scope": "machine-overridable", |
350 | 350 | "default": "",
|
351 | 351 | "title": "Sync Folder",
|
352 | 352 | "description": "This folder will be uploaded to the pyboard when using the sync button. Leave empty to sync the complete project. (only allows folders within the project). Use a path relative to the project you opened in vscode, without leading or trailing slash",
|
353 | 353 | "order": 4
|
354 | 354 | },
|
355 | 355 | "micropico.additionalSyncFolders": {
|
356 | 356 | "type": "array",
|
357 |
| - "scope": "resource", |
| 357 | + "scope": "machine-overridable", |
358 | 358 | "items": {
|
359 | 359 | "type": "string",
|
360 | 360 | "uniqueItems": true
|
|
366 | 366 | },
|
367 | 367 | "micropico.syncAllFileTypes": {
|
368 | 368 | "type": "boolean",
|
| 369 | + "scope": "machine-overridable", |
369 | 370 | "default": false,
|
370 |
| - "scope": "resource", |
371 | 371 | "title": "Upload all file types",
|
372 | 372 | "description": "If enabled, all files will be uploaded no matter the file type. The list of file types below will be ignored",
|
373 | 373 | "order": 6
|
374 | 374 | },
|
375 | 375 | "micropico.syncFileTypes": {
|
376 | 376 | "type": "array",
|
377 |
| - "scope": "resource", |
| 377 | + "scope": "machine-overridable", |
378 | 378 | "items": {
|
379 | 379 | "type": "string",
|
380 | 380 | "uniqueItems": true
|
|
396 | 396 | },
|
397 | 397 | "micropico.pyIgnore": {
|
398 | 398 | "title": "Pyignore list",
|
399 |
| - "scope": "resource", |
| 399 | + "scope": "machine-overridable", |
400 | 400 | "markdownDescription": "Comma separated list of files and folders to ignore when uploading relative to syncFolder (no wildcard or regular expressions supported except `**/<file/folder>` to exclude an item by its name in every sub folder). Use `<additionalSyncFolder>:file/to/exclude.py` to create sync folder exclusive exclusion rules (all other rules will always be applied relative to the selected sync folder). Replace `additionalSyncFolder` with a value from your `micropico.additionalSyncFolders` setting or the value from `micropico.syncFolder`.",
|
401 | 401 | "type": "array",
|
402 | 402 | "items": {
|
|
427 | 427 | },
|
428 | 428 | "micropico.statusbarButtons": {
|
429 | 429 | "type": "array",
|
| 430 | + "scope": "machine-overridable", |
430 | 431 | "title": "Statusbar buttons",
|
431 |
| - "scope": "resource", |
432 | 432 | "description": "Select which buttons to show in the statusbar",
|
433 | 433 | "items": {
|
434 | 434 | "type": "string",
|
|
468 | 468 | },
|
469 | 469 | "micropico.softResetAfterUpload": {
|
470 | 470 | "type": "boolean",
|
| 471 | + "scope": "machine-overridable", |
471 | 472 | "default": false,
|
472 |
| - "scope": "resource", |
473 | 473 | "title": "Soft-reset after upload",
|
474 | 474 | "description": "Soft-resets your board after any upload action which also reruns main.py and boot.py. Usefull when working with main.py and boot.py.",
|
475 | 475 | "order": 12
|
476 | 476 | },
|
477 | 477 | "micropico.executeOnConnect": {
|
478 | 478 | "type": "string",
|
| 479 | + "scope": "machine-overridable", |
479 | 480 | "default": "",
|
480 |
| - "scope": "resource", |
481 | 481 | "title": "Script to execute on connect",
|
482 | 482 | "description": "Path to a MicroPython script on the Pico to execute on connect. Leave empty to disable.",
|
483 | 483 | "order": 13
|
484 | 484 | },
|
485 | 485 | "micropico.importOnConnect": {
|
486 | 486 | "type": "string",
|
| 487 | + "scope": "machine-overridable", |
487 | 488 | "default": "",
|
488 |
| - "scope": "resource", |
489 | 489 | "title": "MicroPython module to import on connect",
|
490 | 490 | "description": "A MicroPython module to import in vREPL on connect. Leave empty to disable.",
|
491 | 491 | "order": 14
|
492 | 492 | },
|
493 | 493 | "micropico.noSoftResetOnRun": {
|
494 | 494 | "type": "boolean",
|
| 495 | + "scope": "machine-overridable", |
495 | 496 | "default": false,
|
496 | 497 | "title": "Disable the soft-resets before and after executing a file.",
|
497 | 498 | "description": "Soft-resets are used to clean REPL state so changes in classes and other structs are reflected correctly.",
|
|
0 commit comments