On Tue 2011.03.15 at 12:19 +0200, Paul Irofti wrote: > On Tue, Mar 15, 2011 at 04:45:43AM -0400, Okan Demirmen wrote: > > hi, > > > > (this is a re-post) > > > > make tab completion work for '=', '`', '[', ':', and '$' - pulled from > > mksh by Alexander Polakov (also posted to tech recently). > > This diff doesn't work for me with files containing '['. This is the > first character I tested and it failed. > > > $ touch "[this] file.txt" > $ cat [<TAB> <--- nothing
You still need to escape these characters. cat \[<TAB> <-- should now work.