From 7e7d34b9f48e23de79ebc6862646c8b68ebe6086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Fri, 29 Aug 2025 11:55:06 +0200 Subject: [PATCH 1/2] Add settings documentation to README Documents available VS Code extension settings for Processing, including autosave, new window behavior, and version selection. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index eb751b2..1e8e23d 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,14 @@ Install the extension from the [Visual Studio Marketplace](https://marketplace.v When you run a sketch, a terminal will open at the bottom of VS Code to show the build output, and the Processing sketch window will appear. +## Settings + +You can customize the extension in VS Code settings (via `Ctrl + ,` on Windows/Linux or `Cmd + ,` on macOS). + +- `processing.autosave`: Automatically saves your sketch before running it. Default: `true`. +- `processing.newWindow`: Opens sketches in a new VS Code window. If disabled, sketches open in the current window. Default: `true`. +- `processing.version`: Choose which installed Processing version to use. Default is `latest`, but you can specify a version (e.g., `4.4.6`). + ## Troubleshooting If something doesn’t work: From e00fda5404bcd564074a4c48e412bd491c913abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Fri, 29 Aug 2025 11:57:45 +0200 Subject: [PATCH 2/2] Update settings instructions in README Improved the explanation of how to customize extension settings in VS Code by providing step-by-step instructions and clarifying how to find and modify Processing-related settings. --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1e8e23d..a2ba465 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,14 @@ When you run a sketch, a terminal will open at the bottom of VS Code to show the ## Settings -You can customize the extension in VS Code settings (via `Ctrl + ,` on Windows/Linux or `Cmd + ,` on macOS). - -- `processing.autosave`: Automatically saves your sketch before running it. Default: `true`. -- `processing.newWindow`: Opens sketches in a new VS Code window. If disabled, sketches open in the current window. Default: `true`. -- `processing.version`: Choose which installed Processing version to use. Default is `latest`, but you can specify a version (e.g., `4.4.6`). +You can customize the extension in VS Code settings + +1. Open Settings via `Ctrl + ,` on Windows/Linux or `Cmd + ,` on macOS. +2. Search for "Processing" to find all available settings. +3. Modify the settings as needed: + - `processing.autosave`: Automatically saves your sketch before running it. Default: `true`. + - `processing.newWindow`: Opens sketches in a new VS Code window. If disabled, sketches open in the current window. Default: `true`. + - `processing.version`: Choose which installed Processing version to use. Default is `latest`, but you can specify a version (e.g., `4.4.6`). ## Troubleshooting