tabby/terminus-core
2020-01-21 11:57:01 +01:00
..
src Update updater.service.ts 2020-01-21 11:57:01 +01:00
.gitignore
package.json apis 2019-12-31 22:48:36 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js webpack 5 2019-11-25 12:20:41 +01:00
yarn.lock Bump core-js from 3.6.1 to 3.6.3 in /terminus-core 2020-01-11 13:12:40 +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 },
    ...
  ]
})