@@ -24,7 +24,6 @@ import * as Constants from './constants';
2424import { Clipboard } from './actions/clipboard' ;
2525import { DeleteAction } from './actions/delete' ;
2626import { EditAction } from './actions/edit' ;
27- import { InsertAction } from './actions/insert' ;
2827import { Navigation } from './navigation' ;
2928import { ShortcutDialog } from './shortcut_dialog' ;
3029import { WorkspaceMovement } from './actions/ws_movement' ;
@@ -55,9 +54,6 @@ export class NavigationController {
5554 /** Context menu and keyboard action for deletion. */
5655 editAction : EditAction = new EditAction ( this . navigation ) ;
5756
58- /** Context menu and keyboard action for insertion. */
59- insertAction : InsertAction = new InsertAction ( this . navigation ) ;
60-
6157 /** Keyboard shortcut for disconnection. */
6258 disconnectAction : DisconnectAction = new DisconnectAction ( this . navigation ) ;
6359
@@ -239,7 +235,6 @@ export class NavigationController {
239235 ShortcutRegistry . registry . register ( shortcut ) ;
240236 }
241237 this . deleteAction . install ( ) ;
242- this . insertAction . install ( ) ;
243238 this . workspaceMovement . install ( ) ;
244239 this . arrowNavigation . install ( ) ;
245240 this . editAction . install ( ) ;
@@ -266,7 +261,6 @@ export class NavigationController {
266261 this . moveActions . uninstall ( ) ;
267262 this . deleteAction . uninstall ( ) ;
268263 this . editAction . uninstall ( ) ;
269- this . insertAction . uninstall ( ) ;
270264 this . disconnectAction . uninstall ( ) ;
271265 this . clipboard . uninstall ( ) ;
272266 this . workspaceMovement . uninstall ( ) ;
0 commit comments