commit 177eb85971a2b8634be444abe300a86cf34b5068
parent a7a73f4642cd8b87bb01d512aa81cc600cc0ad86
Author: kocotian <kocotian@kocotian.pl>
Date: Thu, 18 Feb 2021 09:31:00 +0100
Alt+HJKL = arrows
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -247,6 +247,10 @@ static Shortcut shortcuts[] = {
{ MODKEY, XK_semicolon, externalpipe, {.v = copyurlcmd } },
{ TERMMOD, XK_semicolon, externalpipe, {.v = openurlcmd } },
{ MODKEY, XK_o, externalpipe, {.v = copyoutput } },
+ { MODKEY, XK_h, ttysend, {.s = "\033[D"} },
+ { MODKEY, XK_j, ttysend, {.s = "\033[B"} },
+ { MODKEY, XK_k, ttysend, {.s = "\033[A"} },
+ { MODKEY, XK_l, ttysend, {.s = "\033[C"} },
};
/*