I can't resize a window with a custom layout. #419
Answered
by
LGUG2Z
WantToLearnJapanese
asked this question in
Q&A
-
With the following configuration. I can't dynamically resize any window when a layout is set by Is it normal or just a bug? My - column: Secondary
configuration: !Horizontal 1 # max number of rows
- column: Primary
configuration: !WidthPercentage 70 # percentage of screen
- column: Tertiary
configuration: Horizontal My partial # Define nameSpace names array.
$nameSpaces = @(
"komorebi",
"Grad",
"Codes"
)
komorebic ensure-named-workspaces 0 $nameSpaces
foreach ($nameSpace in $nameSpaces) {
# komorebic namespace-layout $nameSpace bsp
komorebic named-workspace-layout-rule $nameSpace 1 bsp
#
# Custom layout
komorebic named-workspace-custom-layout-rule $nameSpace 3 ~/custom.yaml
komorebic named-workspace-padding $nameSpace 50
komorebic named-workspace-container-padding $nameSpace 50
}
|
Beta Was this translation helpful? Give feedback.
Answered by
LGUG2Z
May 5, 2023
Replies: 1 comment
-
Only the primary column can be resized in a custom layout and you have to use the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
WantToLearnJapanese
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Only the primary column can be resized in a custom layout and you have to use the
resize-axis
command for this.