tabby/tabby-core
Eugene Pankov a159890cba
lint
2021-07-07 21:33:26 +02:00
..
2021-07-07 21:33:26 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02: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 },
    ...
  ]
})