tabby/tabby-core
2021-11-15 20:21:58 +01:00
..
src toolbar icons update 2021-11-15 20:21:58 +01:00
package.json removed old dep 2021-11-06 22:57:45 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock removed old dep 2021-11-06 22:57:45 +01: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 },
    ...
  ]
})