summaryrefslogtreecommitdiffstats
path: root/Tools/idle/AutoExpand.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-04 16:32:21 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-04 16:32:21 (GMT)
commit16b91f89b5afc450736861dd92e4638fe52eaeeb (patch)
tree3fff405510f5fcd9bf3c39ad3c7148b4946a4c27 /Tools/idle/AutoExpand.py
parent5bfffbd79d945b381ff88f40e575776a0377605a (diff)
downloadcpython-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.py4
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>>'),