tabby/tabby-core
2023-02-27 00:09:04 +01:00
..
src typing fixes 2023-02-27 00:09:04 +01:00
package.json bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.mjs bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
yarn.lock bootstrap 5 WIP (#7891) 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 },
    ...
  ]
})