Changeset 28817 in vbox
- Timestamp:
- Apr 27, 2010 1:09:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r28800 r28817 221 221 delims = readline.get_completer_delims() 222 222 readline.set_completer_delims(re.sub("[\\.]", "", delims)) # remove some of the delimiters 223 readline.parse_and_bind("set editing-mode emacs") 223 224 # OSX need it 224 readline.parse_and_bind("set editing-mode emacs")225 225 if platform.system() == 'Darwin': 226 226 # see http://www.certif.com/spec_help/readline.html … … 2281 2281 while True: 2282 2282 try: 2283 cmd = raw_input( colored("vbox> ", 'blue'))2283 cmd = raw_input("vbox> ") 2284 2284 done = runCommand(ctx, cmd) 2285 2285 if done != 0: break
Note:
See TracChangeset
for help on using the changeset viewer.