tabby/tabby-core
2022-02-10 22:33:14 +01:00
..
src new translation extractor 2022-02-10 22:33:14 +01:00
package.json bumped plugins, added serialport mocks 2022-02-07 16:36:20 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock

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