tabby/tabby-core
2023-07-23 21:46:36 +02:00
..
src wip fix(core): deleteProfile & deleteGroupProfile 8e9156e250 48d4b8e8f8 2023-07-23 21:46:36 +02:00
package.json Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core 2023-05-09 05:00:33 +00:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.mjs
yarn.lock Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core 2023-05-09 05:00:33 +00: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 },
    ...
  ]
})