tabby/tabby-core
2021-07-13 19:27:02 +02:00
..
src fixed dynamic port forward listener not getting cleaned up - fixes #4200 2021-07-13 19:27:02 +02:00
package.json bump 2021-07-12 21:29:28 +02:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock Bump @types/js-yaml from 4.0.1 to 4.0.2 in /tabby-core 2021-07-07 11:27:53 +00:00

Tabby Core Plugin

See also: Settings plugin API, Terminal plugin API, Local terminal API

  • tabbed interface services
  • toolbar UI
  • config file management
  • hotkeys
  • tab recovery
  • logging
  • theming

Using the API:

import { AppService, TabContextMenuItemProvider } from 'tabby-core'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: TabContextMenuItemProvider, useClass: MyContextMenu, multi: true },
    ...
  ]
})