This commit is contained in:
Zef Hemel
2023-11-15 10:08:21 +01:00
parent 4acfd96011
commit 8a7c50599d
8 changed files with 51 additions and 2 deletions
+6
View File
@@ -18,6 +18,12 @@ functions:
events:
- editor:complete
refreshAllWidgets:
path: widget.ts:refreshAll
command:
name: "Live Queries and Templates: Refresh All"
key: "Alt-q"
# Slash commands
insertQuery:
redirect: template.insertTemplateText
+5
View File
@@ -0,0 +1,5 @@
import { codeWidget } from "$sb/syscalls.ts";
export function refreshAll() {
codeWidget.refreshAll();
}