mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
538 B
538 B
Tabby Core Plugin
See also: Settings plugin API, Terminal plugin API, Local terminal API
- 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 },
...
]
})