B:BD[
2.3214] → [
2.3214:3797]
// registerShortcut(
// "kwi3:shrinkhorizontal", "kwi3: Shrink the current window horizontally", "Meta+Ctrl+N",
// () => resize(Direction.Left));
// registerShortcut(
// "kwi3:growvertical", "kwi3: Grow the current window vertically", "Meta+Ctrl+E",
// () => resize(Direction.Down));
// registerShortcut(
// "kwi3:shrinkvertical", "kwi3: Shrink the current window vertically", "Meta+Ctrl+I",
// () => resize(Direction.Up));
// registerShortcut(
// "kwi3:growhorizontal", "kwi3: Grow the current window horizontally", "Meta+Ctrl+O",
// () => resize(Direction.Right));
registerShortcut(
"kwi3:shrinkhorizontal", "kwi3: Shrink the current window horizontally", "Meta+Ctrl+N",
() => resize(Axis.Horiz, -1));
registerShortcut(
"kwi3:growvertical", "kwi3: Grow the current window vertically", "Meta+Ctrl+E",
() => resize(Axis.Vert, 1));
registerShortcut(
"kwi3:shrinkvertical", "kwi3: Shrink the current window vertically", "Meta+Ctrl+I",
() => resize(Axis.Vert, -1));
registerShortcut(
"kwi3:growhorizontal", "kwi3: Grow the current window horizontally", "Meta+Ctrl+O",
() => resize(Axis.Horiz, 1));