This commit is contained in:
Zef Hemel
2023-07-14 12:15:10 +02:00
parent 430792834e
commit 87b0e7e352
10 changed files with 77 additions and 18 deletions
+5
View File
@@ -347,6 +347,11 @@ functions:
command:
name: "Debug: Parse Document"
resetClientCommand:
path: ./debug.ts:resetClientCommand
command:
name: "Debug: Reset Client"
versionCommand:
path: ./help.ts:versionCommand
command:
+5 -1
View File
@@ -1,4 +1,4 @@
import { editor, markdown } from "$sb/silverbullet-syscall/mod.ts";
import { debug, editor, markdown } from "$sb/silverbullet-syscall/mod.ts";
export async function parsePageCommand() {
console.log(
@@ -10,3 +10,7 @@ export async function parsePageCommand() {
),
);
}
export async function resetClientCommand() {
await debug.resetClient();
}