File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
packages/jupyterlab-lsp/src Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -189,8 +189,12 @@ export class EditApplicator {
189189 if ( ! editor ) {
190190 throw Error ( 'Editor is not accessible' ) ;
191191 }
192- if ( editor . host . closest ( '.jp-MarkdownCell' ) ) {
192+ if (
193+ editor . host . closest ( '.jp-MarkdownCell' ) ||
194+ editor . host . closest ( '.jp-RawCell' )
195+ ) {
193196 // Workaround for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1008
197+ // and for https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1084
194198 // briefly, the rewrite for JupyterLab 4.0 added Markdown cell support, but they
195199 // are extracted without trace in the top-level document. Here we avoid editing
196200 // any markdown cell. Instead the clean solution would be to add an anchor marker
You can’t perform that action at this time.
0 commit comments