[Cvsshell-devel] CVS: cvsshell/src interactive_app.py,1.11,1.12
Status: Beta
Brought to you by:
stefanheimann
From: Stefan H. <ste...@us...> - 2002-07-27 14:55:11
|
Update of /cvsroot/cvsshell/cvsshell/src In directory usw-pr-cvs1:/tmp/cvs-serv4319 Modified Files: interactive_app.py Log Message: forget to commmit some changes Index: interactive_app.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/interactive_app.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** interactive_app.py 27 Jul 2002 14:42:13 -0000 1.11 --- interactive_app.py 27 Jul 2002 14:55:08 -0000 1.12 *************** *** 37,41 **** readline.parse_and_bind("tab: complete") readline.set_completer_delims(' \t\n`~!@#$%^&*()-=+[{]}\\|;:\'",<>?') - # readline.set_completer(complete) def setHistoryFile(self,filename): --- 37,40 ---- *************** *** 104,110 **** raise AppError, 'evalCommand must be redefined!' - def complete(self, text, state): - if state == 0: - dir = dirname(text) - print 'text: ', text - if state == 0: return 'd/' --- 103,104 ---- |