tabby/terminus-core
Eugene Pankov e764b22698 updater
2020-02-11 15:34:56 +01:00
..
src updater 2020-02-11 15:34:56 +01:00
.gitignore
package.json
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock Merge pull request #1998 from Eugeny/dependabot/npm_and_yarn/terminus-core/core-js-3.6.4 2020-01-21 23:03:16 +01: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 },
    ...
  ]
})