tabby/tabby-core
Eugene Pankov c853c96ae9
lint
2021-07-27 20:27:19 +02:00
..
src lint 2021-07-27 20:27:19 +02:00
package.json dropped ng2-dnd 2021-07-21 23:05:26 +02:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock dropped ng2-dnd 2021-07-21 23:05:26 +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 },
    ...
  ]
})