tabby/tabby-core
2022-02-01 22:11:39 +01:00
..
src Update appRoot.component.ts 2022-02-01 22:11:39 +01:00
package.json bumped plugins 2022-01-31 16:37:43 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock Translation infrastructure 2022-01-08 16:03:01 +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 },
    ...
  ]
})