From eaec854bfb05e3d1bd5614f8997847e67ba2bede Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 25 Jan 2020 11:51:17 +0530 Subject: [PATCH] ... --- kitty/layout.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'