Skip to content

Commit

Permalink
added scrolling key bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Nicolás Savinelli committed Jun 22, 2020
1 parent 597448c commit 00add60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,10 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
{ ShiftMask, XK_Insert, selpaste, {.i = 0} },
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
{ ShiftMask, XK_Up, kscrollup, {.i = -1} },
{ ShiftMask, XK_Down, kscrolldown, {.i = -1} },
{ ShiftMask, XK_Page_Up, kscrollup, {.i = -1} },
{ ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} },
{ ShiftMask, XK_Up, kscrollup, {.i = 1} },
{ ShiftMask, XK_Down, kscrolldown, {.i = 1} },
{ TERMMOD, XK_Return, newterm, {.i = 0} },
};

Expand Down

0 comments on commit 00add60

Please sign in to comment.