fix split bug on single windows and elide titles
This commit is contained in:
parent
7f71a6556b
commit
c555593ae2
8 changed files with 207 additions and 145 deletions
|
|
@ -97,10 +97,10 @@ alt-shift-l = "move-right"
|
|||
|
||||
```toml
|
||||
[shortcuts]
|
||||
alt-d = "split-horizontal"
|
||||
alt-v = "split-vertical"
|
||||
alt-t = "toggle-split"
|
||||
alt-m = "toggle-mono"
|
||||
alt-d = "make-group-h"
|
||||
alt-v = "make-group-v"
|
||||
alt-t = "change-group-opposite"
|
||||
alt-m = "toggle-tab"
|
||||
alt-f = "focus-parent"
|
||||
```
|
||||
|
||||
|
|
@ -475,7 +475,7 @@ table and reference them with `$name`:
|
|||
```toml
|
||||
[actions]
|
||||
my-layout = [
|
||||
"split-horizontal",
|
||||
"make-group-h",
|
||||
{ type = "exec", exec = "alacritty" },
|
||||
]
|
||||
|
||||
|
|
@ -535,10 +535,9 @@ mode = {
|
|||
When certain simple actions are used inside a [window rule](../window-rules.md),
|
||||
they apply to the **matched window** instead of the focused window. The
|
||||
affected actions are: `move-left`, `move-down`, `move-up`, `move-right`,
|
||||
`split-horizontal`, `split-vertical`, `toggle-split`, `tile-horizontal`,
|
||||
`tile-vertical`, `show-single`, `show-all`, `toggle-fullscreen`,
|
||||
`enter-fullscreen`, `exit-fullscreen`, `close`, `toggle-floating`, `float`,
|
||||
`tile`, `toggle-float-pinned`, `pin-float`, `unpin-float`, and `resize`.
|
||||
`toggle-fullscreen`, `enter-fullscreen`, `exit-fullscreen`, `close`,
|
||||
`toggle-floating`, `float`, `tile`, `toggle-float-pinned`, `pin-float`,
|
||||
`unpin-float`, and `resize`.
|
||||
|
||||
Similarly, `kill-client` applies to the matched window's client in a window
|
||||
rule, or to the matched client in a client rule.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue