tabby/tabby-core
dependabot[bot] e519020d11 Bump readable-stream from 3.6.0 to 4.2.0 in /tabby-core
Bumps [readable-stream](https://github.com/nodejs/readable-stream) from 3.6.0 to 4.2.0.
- [Release notes](https://github.com/nodejs/readable-stream/releases)
- [Commits](https://github.com/nodejs/readable-stream/compare/v3.6.0...v4.2.0)

---
updated-dependencies:
- dependency-name: readable-stream
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-02 19:57:17 +02:00
..
src make Platform.exec async 2022-09-27 23:07:26 +02:00
package.json Bump readable-stream from 3.6.0 to 4.2.0 in /tabby-core 2022-10-02 19:57:17 +02: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.js
yarn.lock Bump readable-stream from 3.6.0 to 4.2.0 in /tabby-core 2022-10-02 19:57:17 +02: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 },
    ...
  ]
})