|
@@ -1,29 +1,13 @@
|
|
|
// Copyright (c) Jupyter Development Team.
|
|
|
// Distributed under the terms of the Modified BSD License.
|
|
|
|
|
|
-import {
|
|
|
- IServiceManager
|
|
|
-} from '@jupyterlab/services';
|
|
|
-
|
|
|
-import {
|
|
|
- find
|
|
|
-} from '@phosphor/algorithm';
|
|
|
-
|
|
|
-import {
|
|
|
- JSONObject
|
|
|
-} from '@phosphor/coreutils';
|
|
|
-
|
|
|
-import {
|
|
|
- Menu
|
|
|
-} from '@phosphor/widgets';
|
|
|
-
|
|
|
import {
|
|
|
JupyterLab, JupyterLabPlugin
|
|
|
} from '@jupyterlab/application';
|
|
|
|
|
|
import {
|
|
|
- Dialog, ICommandPalette, ILayoutRestorer,
|
|
|
- IMainMenu, showDialog
|
|
|
+ Dialog, ICommandPalette, ILayoutRestorer, IMainMenu, InstanceTracker,
|
|
|
+ showDialog
|
|
|
} from '@jupyterlab/apputils';
|
|
|
|
|
|
import {
|
|
@@ -34,10 +18,6 @@ import {
|
|
|
IConsoleTracker, ConsolePanel
|
|
|
} from '@jupyterlab/console';
|
|
|
|
|
|
-import {
|
|
|
- InstanceTracker
|
|
|
-} from '@jupyterlab/coreutils';
|
|
|
-
|
|
|
import {
|
|
|
ILauncher
|
|
|
} from '@jupyterlab/launcher';
|
|
@@ -46,6 +26,22 @@ import {
|
|
|
IRenderMime
|
|
|
} from '@jupyterlab/rendermime';
|
|
|
|
|
|
+import {
|
|
|
+ IServiceManager
|
|
|
+} from '@jupyterlab/services';
|
|
|
+
|
|
|
+import {
|
|
|
+ find
|
|
|
+} from '@phosphor/algorithm';
|
|
|
+
|
|
|
+import {
|
|
|
+ JSONObject
|
|
|
+} from '@phosphor/coreutils';
|
|
|
+
|
|
|
+import {
|
|
|
+ Menu
|
|
|
+} from '@phosphor/widgets';
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* The command IDs used by the console plugin.
|