zhaolei d92540f08a fixed #10726 (#10733) há 2 semanas atrás
..
src d92540f08a fixed #10726 (#10733) há 2 semanas atrás
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby há 3 anos atrás
package.json d1293c6a89 update author field há 4 meses atrás
tsconfig.json 43cd3318da project rename há 4 anos atrás
tsconfig.typings.json 43cd3318da project rename há 4 anos atrás
webpack.config.mjs 1e5cfd1d4b bootstrap 5 WIP (#7891) há 2 anos atrás
yarn.lock fed3c78e79 Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core há 2 anos atrás

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