tabby/tabby-core
2023-08-14 15:24:41 +02:00
..
src feat(core/settings/serial/ssh/telnet): add clearServiceMessagesOnConnect option on connectable profile 2023-08-14 15:24:41 +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 },
    ...
  ]
})