tabby/tabby-core
2021-07-05 22:27:55 +02:00
..
src added a profile selector hotkey 2021-07-05 22:27:55 +02:00
.gitignore
package.json new profile system 2021-07-04 12:23:27 +02:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock new profile system 2021-07-04 12:23:27 +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 },
    ...
  ]
})