Skip to content

Commit d83d39c

Browse files
committed
add CTRL-U/D for scrolling on win311
1 parent f13f578 commit d83d39c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

r0c/ivt100.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,8 @@ def __init__(self, host, sck, address, world, usr):
443443
self.add_esc(u"\x0c", "redraw") # ^L (readline-compat)
444444
self.add_esc(u"\x12", "redraw") # ^R
445445
self.add_esc(u"\x0e", "view") # ^N
446+
self.add_esc(u"\x15", "pgup") # ^U
447+
self.add_esc(u"\x04", "pgdn") # ^D
446448
self.add_esc(u"\x01", "prev-chan") # ^A
447449
self.add_esc(u"\x18", "next-chan") # ^X
448450
self.add_esc(u"\x05", "alt-tab") # ^E

r0c/user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
\033[36mHome\033[0m / \033[36mEnd\033[0m input field jump
6060
\033[36mPgUp\033[0m / \033[36mPgDown\033[0m chatlog scrolling... \033[1mtry it :-)\033[0m
6161
62-
if you are using a mac, PgUp is fn-Shift-PgUp
63-
if your terminal is tiny, try \033[36m/mn\033[0m and \033[36m/cy\033[0m
62+
* if your terminal is tiny, try commands \033[36m/mn\033[0m and \033[36m/cy\033[0m
63+
* Cannot scroll? try these: \033[36mCTRL-U\033[0m \033[36mCTRL-D\033[0m \033[36m/u\033[0m \033[36m/d\033[0m
6464
"""
6565

6666

0 commit comments

Comments
 (0)