mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-05 06:24:56 +00:00
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
This commit is contained in:
@@ -196,6 +196,22 @@ export class AppHotkeyProvider extends HotkeyProvider {
|
||||
id: 'close-pane',
|
||||
name: this.translate.instant('Close focused pane'),
|
||||
},
|
||||
{
|
||||
id: 'pane-increase-vertical',
|
||||
name: this.translate.instant('Increase vertical split size'),
|
||||
},
|
||||
{
|
||||
id: 'pane-decrease-vertical',
|
||||
name: this.translate.instant('Decrease vertical split size'),
|
||||
},
|
||||
{
|
||||
id: 'pane-increase-horizontal',
|
||||
name: this.translate.instant('Increase horizontal split size'),
|
||||
},
|
||||
{
|
||||
id: 'pane-decrease-horizontal',
|
||||
name: this.translate.instant('Decrease horizontal split size'),
|
||||
},
|
||||
]
|
||||
|
||||
constructor (
|
||||
|
Reference in New Issue
Block a user