At the moment, `gJ` from the beginning of the first line of ```python a = 1 b = 2 c = 3 d = 4 e = 5 f = 6 g = 7 h = 8 ``` gives ```python a, b, c, d, e, f, g, h = 1, 2, 3, 4, 5, 6, 7, 8 ``` It would be nice if the mapping `gJ` would accept a count, to allow joining a given number of lines.