Skip to content

Commit

Permalink
Merge commit '64571d8a962202fd1ed016be7f61db457e3b776f'
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Jan 10, 2017
2 parents afd2771 + 64571d8 commit 6acc636
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rplugin/python3/denite/prompt/.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ python:
- 3.3
- 3.4
- 3.5
os:
- linux
- osx
osx_image: xcode8
#os:
# - linux
# - osx
#osx_image: xcode8

addons:
apt:
Expand Down
2 changes: 2 additions & 0 deletions rplugin/python3/denite/prompt/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# :help key-notation
SPECIAL_KEYS = {
'NUL': 10,
'C-@': b'\x80\xffX', # Vim internally use <80><ff>X for <C-@>
'BS': b'\x80kb',
'TAB': 9,
'S-TAB': b'\x80kB',
Expand All @@ -21,6 +22,7 @@
'CR': 13,
'ESC': 27,
'SPACE': 32,
'C-SPACE': b'\x80\xfc',
'LT': 60,
'BSLASH': 92,
'BAR': 124,
Expand Down

0 comments on commit 6acc636

Please sign in to comment.