tabby/tabby-core
2023-04-22 14:36:43 +02:00
..
src Revert "resolves Eugeny/tabby#7751, Eugeny/tabby#8062, Eugeny/tabby#6617 add configurable behavior when session ends" 2023-04-22 14:36:43 +02: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 },
    ...
  ]
})