rio: add scroll lock key to toggle scroll mode

This commit is contained in:
cinap_lenrek 2012-07-28 14:47:35 +02:00
parent 6d3ff523db
commit 15c0d4b7c4

View file

@ -665,6 +665,10 @@ wkeyctl(Window *w, Rune r)
case Kend:
wshow(w, w->nr);
return;
case Kscroll:
w->scrolling ^= 1;
wshow(w, w->nr);
return;
case Ksoh: /* ^A: beginning of line */
if(w->q0==0 || w->q0==w->qh || w->r[w->q0-1]=='\n')
return;