tabby/tabby-core
2022-09-27 23:07:26 +02:00
..
src make Platform.exec async 2022-09-27 23:07:26 +02:00
package.json added pgup/pgdown support and fuzzy search to the profile selector - fixes #6872 2022-09-04 23:33:07 +02:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock added pgup/pgdown support and fuzzy search to the profile selector - fixes #6872 2022-09-04 23:33:07 +02: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 },
    ...
  ]
})