mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-22 20:55:03 +03:00
1e6c2cba76
All the WSL distributions that was installed from the Microsoft Store have a package family name that can be used to get the icon of the distribution. Signed-off-by: Matheus Castello <matheus@castello.eng.br> |
||
---|---|---|
.. | ||
src | ||
package.json | ||
README.md | ||
tsconfig.json | ||
tsconfig.typings.json | ||
webpack.config.mjs | ||
yarn.lock |
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 },
...
]
})