diff --git a/packages/jupyter-ai/src/inline-completions.ts b/packages/jupyter-ai/src/inline-completions.ts index 6f5ff4660..caa87a3a6 100644 --- a/packages/jupyter-ai/src/inline-completions.ts +++ b/packages/jupyter-ai/src/inline-completions.ts @@ -411,7 +411,10 @@ class JupyterAIInlineProvider implements IInlineCompletionProvider { if (!language) { return 'plain English'; } - if (language.name === 'ipythongfm') { + if (language.name === 'ipython') { + return 'python'; + } + else if (language.name === 'ipythongfm') { return 'markdown'; } return language.name; diff --git a/packages/jupyter-ai/src/status.ts b/packages/jupyter-ai/src/status.ts index 9478bd5f1..a1a0b69ea 100644 --- a/packages/jupyter-ai/src/status.ts +++ b/packages/jupyter-ai/src/status.ts @@ -13,7 +13,6 @@ export const jupyternautStatus: JupyterFrontEndPlugin = { optional: [IStatusBar], provides: IJupyternautStatus, activate: (app: JupyterFrontEnd, statusBar: IStatusBar | null) => { - console.log('a'); const indicator = new JupyternautStatus({ commandRegistry: app.commands }); if (statusBar) { // Add the status item.