Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 3b88db4

Browse files
committed
Reword arduino.defaultTimestampFormat description
1 parent c5eb3c4 commit 3b88db4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ This extension provides several commands in the Command Palette (<kbd>F1</kbd> o
8080
| `arduino.disableTestingOpen` | Enable/disable automatic sending of a test message to the serial port for checking the open status. The default value is `false` (a test message will be sent). |
8181
| `arduino.skipHeaderProvider` | Enable/disable the extension providing completion items for headers. This functionality is included in newer versions of the C++ extension. The default value is `false`.|
8282
| `arduino.defaultBaudRate` | Default baud rate for the serial port monitor. The default value is 115200. Supported values are 300, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 74880, 115200, 230400 and 250000 |
83-
| `arduino.defaultTimestampFormat` | Default format of timestamp added before each line of Serial Monitor output. List of all possible formats: https://strftime.org. |
83+
| `arduino.defaultTimestampFormat` | Format of timestamp printed before each line of Serial Monitor output. You can find list of all available placeholders [here](https://strftime.org). |
8484
| `arduino.disableIntelliSenseAutoGen` | When `true` vscode-arduino will not auto-generate an IntelliSense configuration (i.e. `.vscode/c_cpp_properties.json`) by analyzing Arduino's compiler output. |
8585

8686
The following Visual Studio Code settings are available for the Arduino extension. These can be set in global user preferences <kbd>Ctrl</kbd> + <kbd>,</kbd> or workspace settings (`.vscode/settings.json`). The latter overrides the former.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@
540540
"arduino.defaultTimestampFormat": {
541541
"type": "string",
542542
"default": "",
543-
"description": "Format of timestamp added before each line. List of all possible formats: https://strftime.org"
543+
"markdownDescription": "Format of timestamp printed before each line of Serial Monitor output. You can find list of all available placeholders [here](https://strftime.org)."
544544
}
545545
}
546546
},

0 commit comments

Comments
 (0)