tabby/tabby-core
christianbingman 4cf9eda55f Allows the user to resize panes using hotkeys
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
2022-04-11 19:44:24 -05:00
..
src Allows the user to resize panes using hotkeys 2022-04-11 19:44:24 -05:00
package.json sort hosts in the jump hosts list 2022-03-16 10:34:40 +01:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js
yarn.lock Bump minimist from 1.2.5 to 1.2.6 in /tabby-core 2022-03-26 10:48:03 +00: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 },
    ...
  ]
})