tabby/terminus-core
dependabot-preview[bot] 85799f49f3
Bump deepmerge from 4.1.1 to 4.2.1 in /terminus-core
Bumps [deepmerge](https://github.com/TehShrike/deepmerge) from 4.1.1 to 4.2.1.
- [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.1.1...v4.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-10-23 04:26:09 +00:00
..
src Add option to disable tab restore on startup 2019-10-14 17:14:23 -04:00
.gitignore
package.json Bump deepmerge from 3.3.0 to 4.1.1 in /terminus-core 2019-10-15 01:12:50 +00:00
README.md docs fix 2019-06-30 23:08:59 +02:00
tsconfig.json
tsconfig.typings.json
webpack.config.js better sourcemaps 2019-08-09 17:39:03 +02:00
yarn.lock Bump deepmerge from 4.1.1 to 4.2.1 in /terminus-core 2019-10-23 04:26:09 +00: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 },
    ...
  ]
})