Eugene Pankov 5f94e84542 theme tweaks, fixed #5068 4 tahun lalu
..
src 5f94e84542 theme tweaks, fixed #5068 4 tahun lalu
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby 4 tahun lalu
package.json d2ec08e3f8 build updates 4 tahun lalu
tsconfig.json 43cd3318da project rename 4 tahun lalu
tsconfig.typings.json 43cd3318da project rename 4 tahun lalu
webpack.config.js 43cd3318da project rename 4 tahun lalu
yarn.lock d2ec08e3f8 build updates 4 tahun lalu

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