1
0
Fork 0
forked from wry/wry

feat: add alternating autotiling

This commit is contained in:
atagen 2026-05-31 17:16:44 +10:00
parent ce14169d6b
commit 5c2f631fdb
17 changed files with 244 additions and 59 deletions

View file

@ -156,6 +156,7 @@ impl Parser for ConfigParser<'_> {
mouse_follows_focus,
animations_val,
),
(scratchpads_val, autotile),
) = ext.extract((
(
opt(val("keymap")),
@ -217,6 +218,7 @@ impl Parser for ConfigParser<'_> {
recover(opt(bol("unstable-mouse-follows-focus"))),
opt(val("animations")),
),
(opt(val("scratchpads")), recover(opt(bol("autotile")))),
))?;
let mut keymap = None;
if let Some(value) = keymap_val {
@ -618,6 +620,8 @@ impl Parser for ConfigParser<'_> {
simple_im,
fallback_output_mode,
mouse_follows_focus: mouse_follows_focus.despan(),
scratchpads,
autotile: autotile.despan(),
})
}
}