diff options
author | hut <hut@lavabit.com> | 2010-04-09 04:19:11 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-09 04:19:11 +0200 |
commit | 35f16f2fc1d99e1753af3bb95b46dbad2122a349 (patch) | |
tree | 56bbb9c18188e81bc2cb09948dfa3653b5a67ee3 /doc | |
parent | feaf9e0a81cf2506b18ad9dbb9732e0be45c10fc (diff) | |
parent | 035a39a8a468ba842fd69a2370aba8ac3c1f3d39 (diff) | |
download | ranger-35f16f2fc1d99e1753af3bb95b46dbad2122a349.tar.gz |
Merge branch 'master' into newkey
Conflicts: ranger/defaults/keys.py
Diffstat (limited to 'doc')
-rw-r--r-- | doc/print_keys.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/print_keys.py b/doc/print_keys.py new file mode 100644 index 00000000..0790acab --- /dev/null +++ b/doc/print_keys.py @@ -0,0 +1,14 @@ +#!/usr/bin/python +""" +You can use this tool to find out values of keypresses +""" + +from curses import * + +sep = '; ' + +@wrapper +def main(w): + while True: + w.addstr(str(w.getch()) + sep) + |