Re: python cmd.Cmd auto complete feature

2011-03-09 Thread Jean-Michel Pichavant
Peter Otten wrote: Jean-Michel Pichavant wrote: I'm trying to autoexpand values as well as arguments using the builtin cmd.Cmd class. I.E. Consider the following command and arguments: > sayHello target=Georges 'Hello Georges !' I can easily make 'tar' expand into 'target=' however I'd l

Re: python cmd.Cmd auto complete feature

2011-03-08 Thread Peter Otten
Jean-Michel Pichavant wrote: > I'm trying to autoexpand values as well as arguments using the builtin > cmd.Cmd class. > > I.E. > Consider the following command and arguments: > > > sayHello target=Georges > 'Hello Georges !' > > I can easily make 'tar' expand into 'target=' however I'd like t