Eugene Pankov 7016688170 allow directly editing items from the profile selector - fixes #6039 3 лет назад
..
src 7016688170 allow directly editing items from the profile selector - fixes #6039 3 лет назад
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby 4 лет назад
package.json 9bc6831f40 sort hosts in the jump hosts list 3 лет назад
tsconfig.json 43cd3318da project rename 4 лет назад
tsconfig.typings.json 43cd3318da project rename 4 лет назад
webpack.config.js 43cd3318da project rename 4 лет назад
yarn.lock ac36627392 Bump minimist from 1.2.5 to 1.2.6 in /tabby-core 3 лет назад

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