Introduction
Introduction Statistics Contact Development Disclaimer Help
Change horizontal scrolling to ^u and ^i, remove ^g scrolling. - surf - surf br…
git clone git://git.suckless.org/surf
Log
Files
Refs
README
LICENSE
---
commit bb014750186c8f2091f1eb208569f47177bfc088
parent d4b030eeb4e7dc85853855eff0a1ccb9378c7b1d
Author: Troels Henriksen <[email protected]>
Date: Mon, 11 Jun 2012 17:16:52 +0200
Change horizontal scrolling to ^u and ^i, remove ^g scrolling.
Diffstat:
M config.def.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/config.def.h b/config.def.h
@@ -36,12 +36,10 @@ static Key keys[] = {
{ MODKEY, GDK_h, navigate, { .i = -1 } },
{ MODKEY, GDK_j, scroll_v, { .i = +1 } },
{ MODKEY, GDK_k, scroll_v, { .i = -1 } },
- { MODKEY, GDK_g, scroll_v, { .i = -20000 } },
- { MODKEY|GDK_SHIFT_MASK,GDK_g, scroll_v, { .i = +20000 } },
{ MODKEY, GDK_b, scroll_v, { .i = -10000 } },
{ MODKEY, GDK_space, scroll_v, { .i = +10000 } },
- { MODKEY, GDK_l, scroll_h, { .i = +1 } },
- { MODKEY, GDK_h, scroll_h, { .i = -1 } },
+ { MODKEY, GDK_i, scroll_h, { .i = +1 } },
+ { MODKEY, GDK_u, scroll_h, { .i = -1 } },
{ 0, GDK_Escape, stop, { 0 } },
{ MODKEY, GDK_o, source, { 0 } },
{ MODKEY, GDK_g, spawn, SETPROP("_SURF_URI", "_SUR…
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.