key bindings: shorten descriptions for column-shrink-left and column-shrink-right

This commit is contained in:
Peter Fajdiga
2024-10-07 00:09:15 +02:00
parent acf4c5c6ae
commit 2cdf308a72

View File

@@ -148,14 +148,14 @@ function getKeyBindings(world: World, actions: Actions): KeyBinding[] {
},
{
name: "column-shrink-left",
description: "Decrease column width to make room for the left column",
description: "Give room left",
comment: "Clashes with default KDE shortcuts, may require manual remapping",
defaultKeySequence: "Meta+Ctrl+A",
action: () => world.doIfTiledFocused(actions.columnShrinkLeft),
},
{
name: "column-shrink-right",
description: "Decrease column width to make room for the right column",
description: "Give room right",
defaultKeySequence: "Meta+Ctrl+D",
action: () => world.doIfTiledFocused(actions.columnShrinkRight),
},