dirtywords

portable text interface framework  https://pypi.python.org/pypi/dirtywords
git clone https://git.ce9e.org/dirtywords.git

commit
7ff6abc06908c0c8254b77c71a631ca650f1d571
parent
25e19f6ee53fce5cdd9746a292df1613b1ee3c59
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-03-22 20:30
Fix stupid keycodes

Diffstat

M dirtywords/stupid.py 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/dirtywords/stupid.py b/dirtywords/stupid.py

@@ -51,8 +51,8 @@ class Screen(base.Screen):
   51    51             '13': KEYS['Return'],
   52    52             '127': KEYS['Backspace'],
   53    53             '27, 27': 27,
   54    -1             '27, 79, 70': KEYS['End'],
   55    -1             '27, 79, 72': KEYS['Home'],
   -1    54             '27, 91, 70': KEYS['End'],
   -1    55             '27, 91, 72': KEYS['Home'],
   56    56             '27, 91, 50, 126': KEYS['Insert'],
   57    57             '27, 91, 51, 126': KEYS['Delete'],
   58    58             '27, 91, 53, 126': KEYS['PageUp'],