diff --git a/kitty/layout.py b/kitty/layout.py index 1d8942f79..fdc7d68cd 100644 --- a/kitty/layout.py +++ b/kitty/layout.py @@ -642,6 +642,7 @@ class Fat(Tall): # {{{ # }}} +# Grid {{{ @lru_cache() def calc_grid_size(n): if n <= 5: @@ -656,7 +657,7 @@ def calc_grid_size(n): return ncols, nrows, special_rows, special_col -class Grid(Layout): # {{{ +class Grid(Layout): name = 'grid'