diff --git a/packages/jupyterlab-lsp/src/edits.ts b/packages/jupyterlab-lsp/src/edits.ts index 925918084..e62f321cd 100644 --- a/packages/jupyterlab-lsp/src/edits.ts +++ b/packages/jupyterlab-lsp/src/edits.ts @@ -189,7 +189,10 @@ export class EditApplicator { if (!editor) { throw Error('Editor is not accessible'); } - if (editor.host.closest('.jp-MarkdownCell') || editor.host.closest('.jp-RawCell')) { + if ( + editor.host.closest('.jp-MarkdownCell') || + editor.host.closest('.jp-RawCell') + ) { // Workaround for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1008 // and for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1084 // briefly, the rewrite for JupyterLab 4.0 added Markdown cell support, but they