tabby/tabby-core
zhaolei d92540f08a
fixed #10726 (#10733)
2025-10-04 11:33:18 +02:00
..
src fixed #10726 (#10733) 2025-10-04 11:33:18 +02:00
README.md bundle the clickable-links plugin with Tabby 2021-12-08 19:54:26 +01:00
package.json update author field 2025-06-16 23:13:18 +02:00
tsconfig.json project rename 2021-06-29 23:57:04 +02:00
tsconfig.typings.json project rename 2021-06-29 23:57:04 +02:00
webpack.config.mjs bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
yarn.lock Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core 2023-05-09 05:00:33 +00:00

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