Files
tabby/terminus-core
dependabot-preview[bot] 0c75e46a3b [Security] Bump bootstrap from 4.1.3 to 4.3.1 in /terminus-core
Bumps [bootstrap](https://github.com/twbs/bootstrap) from 4.1.3 to 4.3.1. **This update includes security fixes.**
- [Release notes](https://github.com/twbs/bootstrap/releases)
- [Commits](https://github.com/twbs/bootstrap/compare/v4.1.3...v4.3.1)
2019-05-24 19:01:46 +00:00
..
wip
2017-04-11 02:22:48 +02:00
2019-03-07 18:04:03 +01:00
wip
2017-06-10 00:29:16 +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 },
    ...
  ]
})