summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/AutoExpand.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/AutoExpand.py')
-rw-r--r--Lib/idlelib/AutoExpand.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/AutoExpand.py b/Lib/idlelib/AutoExpand.py
index 0d57be4..09f34b3 100644
--- a/Lib/idlelib/AutoExpand.py
+++ b/Lib/idlelib/AutoExpand.py
@@ -12,7 +12,7 @@ class AutoExpand:
}
unix_keydefs = {
- '<<expand-word>>': ['<Meta-slash>'],
+ '<<expand-word>>': ['<Meta-slash>', '<Alt-slash>'],
}
menudefs = [
@@ -25,7 +25,6 @@ class AutoExpand:
def __init__(self, editwin):
self.text = editwin.text
- self.text.wordlist = None # XXX what is this?
self.state = None
def expand_word_event(self, event):