fix: bind this to showLog function (#951)

This commit is contained in:
Myriad-Dreamin 2024-12-06 11:36:55 +08:00 committed by GitHub
parent b4ecb7f14b
commit 9b3eaf9926
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -252,7 +252,7 @@ async function languageActivate(context: ExtensionContext) {
await doActivate(context);
}),
commands.registerCommand("tinymist.runCodeLens", commandRunCodeLens),
commands.registerCommand("tinymist.showLog", tinymist.showLog),
commands.registerCommand("tinymist.showLog", () => tinymist.showLog()),
commands.registerCommand("tinymist.copyAnsiHighlight", commandCopyAnsiHighlight),
commands.registerCommand("tinymist.pinMainToCurrent", () => commandPinMain(true)),