Eugene Pankov a494d9c800 fixed #8313 - recover tab icons and colors ealier during start 2 年之前
..
src a494d9c800 fixed #8313 - recover tab icons and colors ealier during start 2 年之前
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby 4 年之前
package.json 20479e9f27 bumped plugins 2 年之前
tsconfig.json 43cd3318da project rename 4 年之前
tsconfig.typings.json 43cd3318da project rename 4 年之前
webpack.config.mjs 1e5cfd1d4b bootstrap 5 WIP (#7891) 2 年之前
yarn.lock 1e5cfd1d4b bootstrap 5 WIP (#7891) 2 年之前

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