Changeset 27956 in vbox
- Timestamp:
- Apr 2, 2010 10:23:49 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59660
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r27953 r27956 195 195 196 196 def autoCompletion(commands, ctx): 197 import platform 197 198 if not g_hasreadline: 198 199 return … … 204 205 readline.set_completer(completer.complete) 205 206 # OSX need it 206 readline.parse_and_bind ("bind ^I rl_complete") 207 if platform.system() == 'Darwin': 208 readline.parse_and_bind ("bind ^I rl_complete") 207 209 readline.parse_and_bind("tab: complete") 208 210
Note:
See TracChangeset
for help on using the changeset viewer.