about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-07 18:50:50 +0200
committerhut <hut@lavabit.com>2010-04-07 18:50:50 +0200
commiteacd742bd40013d8868fc75a29a85a14f1ee1e81 (patch)
treec4606a28908530e19452f6e9af3eb215f6cb04f3 /test
parent894665269984ebf9f07bd9cae681ba2057715e25 (diff)
downloadranger-eacd742bd40013d8868fc75a29a85a14f1ee1e81.tar.gz
container.keymap: support for Alt key
Diffstat (limited to 'test')
-rw-r--r--test/tc_newkeys.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tc_newkeys.py b/test/tc_newkeys.py
index bcf08e5f..bbfc74e9 100644
--- a/test/tc_newkeys.py
+++ b/test/tc_newkeys.py
@@ -136,6 +136,8 @@ class Test(PressTestCase):
 		test('<C-b>', 2)
 		for i in range(1, 26):
 			test('<C-' + chr(i+ord('a')-1) + '>', i)
+		test('<A-x>', 27, ord('x'))
+		test('<a-o>', 27, ord('o'))
 		test('k<a')
 		test('k<anz>')
 		test('k<a<nz>')