update help text
This commit is contained in:
parent
755aca3e30
commit
779894e2a7
1 changed files with 6 additions and 7 deletions
13
nboard
13
nboard
|
@ -26,7 +26,8 @@ def main(stdscr):
|
||||||
stdscr.clear()
|
stdscr.clear()
|
||||||
|
|
||||||
height, width = stdscr.getmaxyx()
|
height, width = stdscr.getmaxyx()
|
||||||
|
|
||||||
|
|
||||||
# detect where to move cursor
|
# detect where to move cursor
|
||||||
if k == 'KEY_UP':
|
if k == 'KEY_UP':
|
||||||
vy += -1
|
vy += -1
|
||||||
|
@ -76,7 +77,7 @@ def main(stdscr):
|
||||||
# move the cursor where its actually supposed to be
|
# move the cursor where its actually supposed to be
|
||||||
stdscr.move(cy,cx)
|
stdscr.move(cy,cx)
|
||||||
|
|
||||||
#print(k) # debug keycodes
|
#print(str(k)) # debug keycodes
|
||||||
|
|
||||||
k = stdscr.getkey()
|
k = stdscr.getkey()
|
||||||
|
|
||||||
|
@ -87,13 +88,11 @@ if __name__ == "__main__":
|
||||||
print("""
|
print("""
|
||||||
nboard is like yourworldoftext.com, except its in a terminal.
|
nboard is like yourworldoftext.com, except its in a terminal.
|
||||||
|
|
||||||
use the arrow keys to move arount, and to go to the next 'pane',
|
use the arrow keys to move arount
|
||||||
press & (ampersand, usually shift+7 on standard us keyboards) and then
|
|
||||||
an arrow key
|
|
||||||
once you are in the place you want, you can start typing!
|
once you are in the place you want, you can start typing!
|
||||||
|
|
||||||
please report any bugs to ~lickthecheese on IRC or on the github page,
|
please report any bugs to ~xfnw on IRC or on the tildegit page,
|
||||||
https://github.com/LickTheCheese/nboard
|
https://tildegit.org/xfnw/nboard
|
||||||
""")
|
""")
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue