rio: add scroll lock key to toggle scroll mode
This commit is contained in:
parent
6d3ff523db
commit
15c0d4b7c4
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue