1.0.140 • Published 3 years ago

terminus-core v1.0.140

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

Terminus Core Plugin

See also: Settings plugin API, Terminal plugin API, Local terminal 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 },
    ...
  ]
})