mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-03 06:11:57 +08:00
4cf9eda55f
Changes: - Adds 4 hotkeys for resizing panes horizontally and vertically - Updates the config files (default not set) - Updates the window settings to allow the user to modify the pane resize increments |
||
---|---|---|
.. | ||
src | ||
package.json | ||
README.md | ||
tsconfig.json | ||
tsconfig.typings.json | ||
webpack.config.js | ||
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 },
...
]
})