tFix scroll direction with ^D - surf - customized build of surf, the suckless webkit browser
 (HTM) git clone git://src.adamsgaard.dk/surf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 92b7936f4746136a1f4c24774ecbcc3bfb4c1ba9
 (DIR) parent 6d08917cf38a120460a7a248ed9678fa8c3a01eb
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Fri,  3 Jan 2020 16:07:49 +0100
       
       Fix scroll direction with ^D
       
       Diffstat:
         M config.h                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/config.h b/config.h
       t@@ -157,7 +157,7 @@ static Key keys[] = {
                { MODKEY,                GDK_KEY_k,      scrollv,    { .i = -10 } },
                { MODKEY,                GDK_KEY_b,      spawn,      BOOKMARKURI("_SURF_URI") },
                { MODKEY,                GDK_KEY_space,  scrollv,    { .i = +50 } },
       -        { MODKEY,                GDK_KEY_d,      scrollv,    { .i = -50 } },
       +        { MODKEY,                GDK_KEY_d,      scrollv,    { .i = +50 } },
                { MODKEY|GDK_SHIFT_MASK, GDK_KEY_d,      scrollv,    { .i = +100 } },
                { MODKEY,                GDK_KEY_u,      scrollv,    { .i = -50 } },
                { MODKEY|GDK_SHIFT_MASK, GDK_KEY_u,      scrollv,    { .i = -100 } },