在Jupyterlab中,默认情况下打开文件浏览器插件。如何更改此设置以在启动时默认打开自定义插件。
在我的自定义插件的激活功能中,我有以下代码段,我认为更改需要在此处-
// If the layout is a fresh session without saved data, open my custom plugin
app.restored.then(layout => {
if (layout.fresh) {
console.log('This is a fresh launch, open custom plugin by default');
//do something here
}
});
答案 0 :(得分:0)
您可以在active
函数中执行类似的操作:
app.restored.then(() => {
labShell.activateById(formationPanel.id);
});