tabby/tabby-core
Eugene 1e5cfd1d4b
bootstrap 5 WIP (#7891)
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
2023-02-26 20:42:31 +01:00
..
src bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
package.json bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
README.md bundle the clickable-links plugin with Tabby 2021-12-08 19:54:26 +01:00
tsconfig.json
tsconfig.typings.json
webpack.config.mjs bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
yarn.lock bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00

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