Eugene Pankov 8d000a3bd4 wip 3 years ago
..
src 8d000a3bd4 wip 3 years ago
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby 4 years ago
package.json 42e95f15b4 wip 3 years ago
tsconfig.json 43cd3318da project rename 4 years ago
tsconfig.typings.json 43cd3318da project rename 4 years ago
webpack.config.mjs 90e00fdcac wip 3 years ago
yarn.lock 4943e2cd5e wip 3 years ago

README.md

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