You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fullscreen, cyclenext and swapnext keep the mode their Hyprlang arg selects. All three translated to their bare Lua call, so bind = SUPER, F, fullscreen, 1 emitted hl.dsp.window.fullscreen() and the bind toggled full screen instead of maximizing. They now emit mode/action, next/tiled/floating and next/prev respectively, and the reverse reader maps each back to its Hyprlang arg. BlueManCZ/hyprmod#86
fullscreen, 2 still emits the plain call: Hyprland has read every mode but 1 as full screen since the fullscreen-state refactor, and the Lua binding rejects a literal "2".
swapnext, prev emits { prev = true }, not { next = false } — the Lua binding looks for a truthy next or prev and errors on a table with neither.
cyclenext's visible and hist modes are dropped, matching what Hyprland's own legacy translator does with them.