tabby/tabby-core
Eugene Pankov 8d000a3bd4
wip
2023-02-26 19:18:28 +01:00
..
wip
2023-02-26 19:18:28 +01:00
wip
2023-02-26 00:13:04 +01:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
wip
2023-02-26 18:28:31 +01:00
wip
2023-02-20 11:38:34 +01:00

Tabby Core Plugin

See also:

This module provides:

  • 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 },
    ...
  ]
})