mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-21 20:09:53 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.3.0-alpha1 to 5.3.2. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](https://github.com/twbs/bootstrap/compare/v5.3.0-alpha1...v5.3.2) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
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 },
...
]
})