tabby/tabby-core
Eugene af0e25ea09
Merge pull request #9891 from marko1616/master
Fix Issue #4946 Basic folder upload for sftp electron.
2024-08-24 23:49:46 +02:00
..
src Merge pull request #9891 from marko1616/master 2024-08-24 23:49:46 +02:00
package.json Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core 2023-05-09 05:00:33 +00:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.mjs
yarn.lock Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core 2023-05-09 05:00:33 +00: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 },
    ...
  ]
})