tabby/terminus-core
dependabot-preview[bot] 4633d6e45e
Bump deepmerge from 4.2.1 to 4.2.2 in /terminus-core
Bumps [deepmerge](https://github.com/TehShrike/deepmerge) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/TehShrike/deepmerge/releases)
- [Changelog](https://github.com/TehShrike/deepmerge/blob/master/changelog.md)
- [Commits](https://github.com/TehShrike/deepmerge/compare/v4.2.1...v4.2.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-10-29 04:27:55 +00:00
..
2019-10-26 20:00:10 +02:00
wip
2017-04-11 02:22:48 +02:00
2019-06-30 23:08:59 +02:00
2019-06-14 17:49:42 +02:00
2019-06-06 13:45:15 +02:00
2019-08-09 17:39:03 +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 },
    ...
  ]
})