diff options
author | CĂ©lestin Matte <celestin.matte@gmail.com> | 2014-12-29 23:57:56 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-12-31 00:06:41 +0100 |
commit | 8e575de52c3c779fbc66c1d74aebb75522d072a0 (patch) | |
tree | 6f93a17c83f18a7ef0e39d431ad2198854e1a085 /src/windows | |
parent | cf04e65983a133d8d9164ebda80ea0a5e89f4378 (diff) | |
download | poezio-8e575de52c3c779fbc66c1d74aebb75522d072a0.tar.gz poezio-8e575de52c3c779fbc66c1d74aebb75522d072a0.tar.bz2 poezio-8e575de52c3c779fbc66c1d74aebb75522d072a0.tar.xz poezio-8e575de52c3c779fbc66c1d74aebb75522d072a0.zip |
Fix broken CTRL+arrow key shortcuts under some terms
Diffstat (limited to 'src/windows')
-rw-r--r-- | src/windows/inputs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/windows/inputs.py b/src/windows/inputs.py index 2cf719ba..12d3a9a2 100644 --- a/src/windows/inputs.py +++ b/src/windows/inputs.py @@ -43,6 +43,8 @@ class Input(Win): '^D': self.key_dc, 'M-b': self.jump_word_left, "M-[1;5D": self.jump_word_left, + "kRIT5": self.jump_word_right, + "kLFT5": self.jump_word_left, '^W': self.delete_word, 'M-d': self.delete_next_word, '^K': self.delete_end_of_line, |