diff --git a/.vscode/keybindings.json b/.vscode/keybindings.json new file mode 100644 index 000000000..de47e2408 --- /dev/null +++ b/.vscode/keybindings.json @@ -0,0 +1,5 @@ +{ + "key": "ctrl+alt+s", + "command": "extension.multiCommand.execute", + "args": { "command": "multiCommand.syncAllFiles" }, +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 875f64aed..b76b86adf 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,5 +15,19 @@ "files.watcherExclude": { "**/node_modules": true }, - "vscodeMarkdownNotes.noteCompletionConvention": "noExtension" + "vscodeMarkdownNotes.noteCompletionConvention": "noExtension", + "multiCommand.commands": [ + { + "command": "multiCommand.syncAllFiles", + "sequence": [ + "workbench.action.files.saveAll", + { + "command": "workbench.action.terminal.sendSequence", + "args": { + "text": "git add . && git commit -a -m 'automatic update on save.' && git push\u000D" + } + } + ] + } + ] } diff --git a/agora-version.md b/agora-version.md index ac6f93581..49d187f78 100644 --- a/agora-version.md +++ b/agora-version.md @@ -1,4 +1,5 @@ # Agora Version - You are currently reading this on [[agora 0.5.1]] as per [[semantic versioning]]. +- See [[Agora plan]] for what's likely in store.