Client reset command

pull/417/head
Zef Hemel 2023-05-29 09:56:47 +02:00
parent c6a45be4bb
commit 97710d1a79
2 changed files with 9 additions and 0 deletions

View File

@ -326,6 +326,11 @@ functions:
path: ./debug.ts:parsePageCommand
command:
name: "Debug: Parse Document"
resetClientCommand:
path: ./debug.ts:resetClientCommand
command:
name: "Debug: Reset Client"
versionCommand:
path: ./help.ts:versionCommand

View File

@ -10,3 +10,7 @@ export async function parsePageCommand() {
),
);
}
export async function resetClientCommand() {
editor.openUrl("/.client/reset.html");
}