tabby/tabby-core
Eugene 72a5da5ac3
Revert "wsl: Get the distro icon from the package family name"
This reverts commit 1e6c2cba769fadf4fdce4715b8cf29b45bfe7984.
2024-07-18 23:57:58 +02:00
..
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2023-02-26 20:42:31 +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 },
    ...
  ]
})