diff options
| author | Gildasio Junior <gildasiojunior@riseup.net> | 2023-04-06 14:51:06 -0300 |
|---|---|---|
| committer | Marcelo Lira <setanta@gmail.com> | 2025-03-03 16:12:29 -0300 |
| commit | 2cf04478a20133a13c364aeb1557e29004fd95c1 (patch) | |
| tree | bcd44efe4f25aac1731822ae879f65942bd60907 /config.def.h | |
| parent | a35780dfd954bcc96989c539b9bcfb788586c750 (diff) | |
Loop through urls on screen in both directions
Using previous patches one can loop through urls in the screen in one
direction: botton-up. This patch add a way that can go in the opposite
direction: top-down.
This is usefull in a screen with lots of urls.
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b721502..98e8aad 100644 --- a/config.def.h +++ b/config.def.h @@ -221,6 +221,8 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_Y, selpaste, {.i = 0} }, { ShiftMask, XK_Insert, selpaste, {.i = 0} }, { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, + { MODKEY, XK_l, copyurl, {.i = 0} }, + { MODKEY|ShiftMask, XK_L, copyurl, {.i = 1} }, }; /* |
