1
1
mirror of https://github.com/Eugeny/tabby.git synced 2025-01-05 18:25:58 +03:00
tabby/tabby-core
2021-07-02 00:09:32 +02:00
..
src handle legacy plugins in plugin loader 2021-07-02 00:09:32 +02:00
.gitignore project rename 2021-06-29 23:57:04 +02:00
package.json bumped plugin versions 2021-07-01 22:56:23 +02:00
README.md project rename 2021-06-29 23:57:04 +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.js project rename 2021-06-29 23:57:04 +02:00
yarn.lock project rename 2021-06-29 23:57:04 +02:00

Tabby Core Plugin

See also: Settings plugin API, Terminal plugin API, Local terminal API

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