diff options
author | Guido van Rossum <guido@python.org> | 1999-01-04 16:32:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-04 16:32:21 (GMT) |
commit | 16b91f89b5afc450736861dd92e4638fe52eaeeb (patch) | |
tree | 3fff405510f5fcd9bf3c39ad3c7148b4946a4c27 /Tools/idle/AutoExpand.py | |
parent | 5bfffbd79d945b381ff88f40e575776a0377605a (diff) | |
download | cpython-16b91f89b5afc450736861dd92e4638fe52eaeeb.zip cpython-16b91f89b5afc450736861dd92e4638fe52eaeeb.tar.gz cpython-16b91f89b5afc450736861dd92e4638fe52eaeeb.tar.bz2 |
Added Meta-/ binding for Unix as alt for Alt-/.
Diffstat (limited to 'Tools/idle/AutoExpand.py')
-rw-r--r-- | Tools/idle/AutoExpand.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/idle/AutoExpand.py b/Tools/idle/AutoExpand.py index 1ebd7d5..0d57be4 100644 --- a/Tools/idle/AutoExpand.py +++ b/Tools/idle/AutoExpand.py @@ -11,6 +11,10 @@ class AutoExpand: '<<expand-word>>': ['<Alt-slash>'], } + unix_keydefs = { + '<<expand-word>>': ['<Meta-slash>'], + } + menudefs = [ ('edit', [ ('E_xpand word', '<<expand-word>>'), |