diff --git a/extensions/positron-python/src/client/positron/webAppCommands.ts b/extensions/positron-python/src/client/positron/webAppCommands.ts index 12b7ec8bd40..8ac34d6e3b5 100644 --- a/extensions/positron-python/src/client/positron/webAppCommands.ts +++ b/extensions/positron-python/src/client/positron/webAppCommands.ts @@ -34,6 +34,8 @@ export function activateWebAppCommands(serviceContainer: IServiceContainer, disp ), registerExecCommand(Commands.Exec_Shiny_In_Terminal, 'Shiny', (_runtime, document, _urlPrefix) => getShinyDebugConfig(document), + undefined, + 'Application startup complete', ), registerExecCommand(Commands.Exec_Streamlit_In_Terminal, 'Streamlit', (_runtime, document, _urlPrefix) => getStreamlitDebugConfig(document), @@ -54,6 +56,8 @@ export function activateWebAppCommands(serviceContainer: IServiceContainer, disp ), registerDebugCommand(Commands.Debug_Shiny_In_Terminal, 'Shiny', (_runtime, document, _urlPrefix) => getShinyDebugConfig(document), + undefined, + 'Application startup complete', ), registerDebugCommand(Commands.Debug_Streamlit_In_Terminal, 'Streamlit', (_runtime, document, _urlPrefix) => getStreamlitDebugConfig(document),