tabby/terminus-core
Eugene Pankov 1031b2912c Revert "bumped @types/node"
This reverts commit 025927577eb13bb3ab1c0406af1c78b4d20fbd74.
2019-06-06 14:32:50 +02:00
..
2019-06-06 13:45:15 +02:00
wip
2017-04-11 02:22:48 +02:00
2019-06-06 14:32:50 +02:00
2019-03-07 18:04:03 +01:00
2019-06-06 13:45:15 +02:00
2019-06-06 13:45:15 +02:00
2019-05-31 18:17:41 +02:00

Terminus Core Plugin

See also: Settings plugin API, Terminal plugin API

  • tabbed interface services
  • toolbar UI
  • config file management
  • hotkeys
  • tab recovery
  • logging
  • theming

Using the API:

import { AppService, TabContextMenuItemProvider } from 'terminus-core'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: TabContextMenuItemProvider, useClass: MyContextMenu, multi: true },
    ...
  ]
})