rendermime/src/renderer
, which has a function called Private.ansiSpan
but it's not exported...OutputArea
renders it unfortunately.
I have a question about theme: After I installed a theme extension, the newly installed theme won't appear in the Settings -> JupyterLab Theme submenu. How can I fix this?
Well it turned out to be a problem described in this issue jupyterlab/jupyterlab#8122 . I deleted build_config.json
and everything works fine!
latest
version of this page: https://jupyterlab.readthedocs.io/en/latest/developer/extension_dev.html
import { ReactWidget } from '@jupyterlab/apputils';
Thanks for all the quick replies btw, y'all are awesome!
Question regarding handleComms
based on #6929. Suppose the following scenario:
widget-1, widget-2
) of the same widgets are created (e.g. console), each with a different session pointing to two different kernelswidget-1
) to use the session of widget-2
. This closes all comms that was registered by widget-1
since the new kernelconnection does not handleComms
so the registerCommTarget
call will be fenced by an if statement.My question is suppose I want the kernel to talk to the two widgets
(now connected to the same kernel) either simultaenously or independently of each other, how would I send data over since widget-2
now has no Comm associated with it?