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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Pico-W-Go provides code auto-completion and allows you to communicate with your
6
6
7
7
Works with:
8
8
| Platform | x64 | arm64 | armhf |
9
-
| --------|---| -----| -----|
9
+
|:------- |:-:|:---:|:---:|
10
10
| Windows | ✅ | ✅ | ❌ |
11
11
| macOS | ✅ | ✅ | ❌ |
12
12
| Linux | ✅ | ✅ | ✅ |
@@ -74,7 +74,7 @@ This extension contributes the following settings:
74
74
*`picowgo.additionalSyncFolders`: Specifies additional folders that can be selected as upload sources when uploading a project. If left empty, the sync will be performed based on the folder specified in the 'syncFolder' setting. Only folders within the project are allowed. Specify the path relative to the project you have opened in Visual Studio Code, without a leading or trailing slash.
75
75
*`picowgo.syncAllFileTypes`: If enabled, all files will be uploaded no matter the file type. The list of file types below will be ignored.
76
76
*`picowgo.syncFileTypes`: All types of files that will be uploaded to the board, seperated by comma. All other filetypes will be ignored during an upload (or download) action.
77
-
*`picowgo.pyIgnore`: Comma separated list of files and folders to ignore when uploading (no wildcard or regular expressions supported).
77
+
*`picowgo.pyIgnore`: 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 `picowgo.additionalSyncFolders` setting or the value from `picowgo.syncFolder`.
78
78
*`picowgo.openOnStart`: Automatically open the Pico-W-Go console and connect to the board after starting VS Code.
79
79
*`picowgo.statusbarButtons`: Select which buttons to show in the statusbar (DO NOT CHANGE, unless you know what you are doing)
80
80
*`picowgo.gcBeforeUpload`: Run garbage collection before uploading files to the board. This will free up some memory usefull when uploading large files but adds about a second or two to the upload process.
Copy file name to clipboardExpand all lines: package.json
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -314,19 +314,20 @@
314
314
},
315
315
"picowgo.pyIgnore": {
316
316
"title": "Pyignore list",
317
-
"description": "Comma separated list of files and folders to ignore when uploading relative to syncFolder (no wildcard or regular expressions supported)",
317
+
"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 `picowgo.additionalSyncFolders` setting or the value from `picowgo.syncFolder`.",
318
318
"type": "array",
319
319
"items": {
320
320
"type": "string"
321
321
},
322
322
"default": [
323
-
".picowgo",
324
-
".vscode",
325
-
".gitignore",
326
-
".git",
327
-
"project.pico-go",
328
-
"env",
329
-
"venv"
323
+
"**/.picowgo",
324
+
"**/.vscode",
325
+
"**/.gitignore",
326
+
"**/.git",
327
+
"**/.DS_Store",
328
+
"**/project.pico-go",
329
+
"**/env",
330
+
"**/venv"
330
331
],
331
332
"order": 8
332
333
},
@@ -380,7 +381,6 @@
380
381
"picowgo.softResetAfterUpload": {
381
382
"type": "boolean",
382
383
"default": false,
383
-
"scope": "machine-overridable",
384
384
"title": "Soft-reset after upload",
385
385
"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.",
0 commit comments