Debug: Reload UI command

This commit is contained in:
Zef Hemel
2023-07-26 11:22:10 +02:00
parent cf80b94b19
commit 5481e49393
4 changed files with 16 additions and 0 deletions
+5
View File
@@ -352,6 +352,11 @@ functions:
command:
name: "Debug: Parse Document"
reloadUICommand:
path: ./debug.ts:reloadUICommand
command:
name: "Debug: Reload UI"
resetClientCommand:
path: ./debug.ts:resetClientCommand
command:
+4
View File
@@ -14,3 +14,7 @@ export async function parsePageCommand() {
export async function resetClientCommand() {
await debug.resetClient();
}
export async function reloadUICommand() {
await editor.reloadUI();
}