tabby/tabby-core
Dani Nugraha 2d3234fe1d fixed #6741
changed spanner to emit event to splitTab and tell its mousedown state
disabled tab focus on hover when spanner is being dragged by the mouse
2022-12-03 12:07:20 +01:00
..
2022-12-03 12:07:20 +01:00
2022-11-07 22:57:40 +01:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +02:00
2021-06-29 23:57:04 +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 },
    ...
  ]
})