Back to Tabby

Tabby Core Plugin

tabby-core/README.md

1.0.232585 B
Original Source

Tabby Core Plugin

See also:

This module provides:

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

Using the API:

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

Exporting your subclasses:

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