@@ -196,10 +196,10 @@ hl.bind(mainMod .. " + SHIFT + L", hl.dsp.window.move({ direction = "right", gro
196196hl .bind (mainMod .. " + SHIFT + K" , hl .dsp .window .move ({ direction = " up" , group_aware = true }))
197197hl .bind (mainMod .. " + SHIFT + J" , hl .dsp .window .move ({ direction = " down" , group_aware = true }))
198198
199- hl .bind (mainMod .. " + CONTROL + H" , hl .dsp .window .resize ({ x = - 20 , y = 0 }) )
200- hl .bind (mainMod .. " + CONTROL + L" , hl .dsp .window .resize ({ x = 20 , y = 0 }) )
201- hl .bind (mainMod .. " + CONTROL + K" , hl .dsp .window .resize ({ x = 0 , y = - 20 }) )
202- hl .bind (mainMod .. " + CONTROL + J" , hl .dsp .window .resize ({ x = 0 , y = 20 }) )
199+ hl .bind (mainMod .. " + CONTROL + H" , hl .dsp .window .resize ({ x = - 20 , y = 0 , relative = true }), { repeating = true } )
200+ hl .bind (mainMod .. " + CONTROL + L" , hl .dsp .window .resize ({ x = 20 , y = 0 , relative = true }), { repeating = true } )
201+ hl .bind (mainMod .. " + CONTROL + K" , hl .dsp .window .resize ({ x = 0 , y = - 20 , relative = true }), { repeating = true } )
202+ hl .bind (mainMod .. " + CONTROL + J" , hl .dsp .window .resize ({ x = 0 , y = 20 , relative = true }), { repeating = true } )
203203
204204for i = 1 , 10 do
205205 local key = i % 10 -- 10 maps to key 0
0 commit comments