This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function smart_move_to_screen(c, dir) | |
local was_maximized = { h = false, v = false } | |
if c.maximized_horizontal then | |
c.maximized_horizontal = false | |
was_maximized.h = true | |
end | |
if c.maximized_vertical then | |
c.maximized_vertical = false | |
was_maximized.v = true | |
end |