tabby/terminus-core
2020-03-30 16:48:35 +08:00
..
src narrow down the margin of serial tab 2020-03-30 16:48:35 +08:00
.gitignore
package.json bumped plugin versions 2020-03-01 16:40:43 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock Bump electron-updater from 4.2.2 to 4.2.5 in /terminus-core 2020-03-12 04:20:51 +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 },
    ...
  ]
})