浏览代码

Add context menu for create console.

Brian E. Granger 8 年之前
父节点
当前提交
3d70fb87e1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      packages/fileeditor-extension/src/index.ts

+ 2 - 0
packages/fileeditor-extension/src/index.ts

@@ -289,5 +289,7 @@ function activate(app: JupyterLab, registry: IDocumentRegistry, restorer: ILayou
     });
   }
 
+  app.contextMenu.addItem({command: CommandIDs.createConsole, selector: '.jp-FileEditor'});
+
   return tracker;
 }