From f1d8943c8d53b85eb51ec13635778b9016d52dfd Mon Sep 17 00:00:00 2001 From: paolobettelini Date: Thu, 31 Oct 2024 21:55:07 +0100 Subject: [PATCH] Updated documentation --- documentation/src/SUMMARY.md | 1 + documentation/src/misc_vscode.md | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 documentation/src/misc_vscode.md diff --git a/documentation/src/SUMMARY.md b/documentation/src/SUMMARY.md index 64d359e..022e8f7 100644 --- a/documentation/src/SUMMARY.md +++ b/documentation/src/SUMMARY.md @@ -28,4 +28,5 @@ # Miscellaneous - [Fish configuration](./misc_fish.md) + - [VS Code configuration](./misc_vscode.md) - [TODO](./misc_todo.md) \ No newline at end of file diff --git a/documentation/src/misc_vscode.md b/documentation/src/misc_vscode.md new file mode 100644 index 0000000..8a6ca8d --- /dev/null +++ b/documentation/src/misc_vscode.md @@ -0,0 +1,12 @@ +# VS Code configuration + +You can install the `Action Buttons` extension and add the following command: +```json +{ + "name": "$(triangle-right) Run Notes", + "color": "green", + "singleInstance": true, + "command": "notes ${fileBasename}", +} +``` +This will provide a button to compile the current file. \ No newline at end of file