Re: crash bug report, plus complaint about bashbug

2012-04-19 Thread Chet Ramey
On 4/19/12 8:26 AM, Peter Maloney wrote: > Dear bash guys, > > Bashbug interface was COMPLETELY useless. The emacs quit key didn't work. > There were no instructions. It didn't even tell me it was emacs so I could > go look it up. I had to find that out elsewhere. Eventually it wouldn't > even let

crash bug report, plus complaint about bashbug

2012-04-19 Thread Peter Maloney
Dear bash guys, Bashbug interface was COMPLETELY useless. The emacs quit key didn't work. There were no instructions. It didn't even tell me it was emacs so I could go look it up. I had to find that out elsewhere. Eventually it wouldn't even let me edit, saying the buffer is read only. What th

Re: Directory completion problems

2012-04-19 Thread Artur Rataj
I want the logical view, and I think there is one by now. But there is a file missing in the logical directory, when cd ../ is completed from a symlink. ~/projects/art/dev$ ls -la drwxr-xr-x 6 art art 4096 2012-02-24 16:21 .bzr lrwxrwxrwx 1 art art 18 2012-04-16 14:48 lib -> ../../hth/dev/lib/

Re: Directory completion problems

2012-04-19 Thread Chet Ramey
On 4/19/12 7:38 AM, Artur Rataj wrote: > Yes, it appears that "lib" is indeed a symlink. Is it possible to treat it > as if it were "just here" with the tab completion? By default, bash uses a logical view of the file system, in which $PWD and pwd report the current directory using the path used t

Re: Directory completion problems

2012-04-19 Thread Artur Rataj
Yes, it appears that "lib" is indeed a symlink. Is it possible to treat it as if it were "just here" with the tab completion?

Re: Directory completion problems

2012-04-19 Thread Roman Rakus
On 04/19/2012 12:28 PM, Artur Rataj wrote: ~/projects/art/dev/lib$ cd ../ .bzr/ lib/ ~/projects/art/dev/lib$ cd ../src ~/projects/art/dev/src$ cd ../ .bzr/ lib/ src/ ~/projects/art/dev/src$ cd ../lib ~/projects/art/dev/lib$ cd ../ .bzr/ lib/ Are there any symlinks? RR

Re: Directory completion problems

2012-04-19 Thread Artur Rataj
~/projects/art/dev/lib$ cd ../ .bzr/ lib/ ~/projects/art/dev/lib$ cd ../src ~/projects/art/dev/src$ cd ../ .bzr/ lib/ src/ ~/projects/art/dev/src$ cd ../lib ~/projects/art/dev/lib$ cd ../ .bzr/ lib/

Directory completion problems

2012-04-19 Thread Artur Rataj
hello, could you explain the following? ~/projects/art/dev/lib$ cd ../ .bzr/ lib/ ~/projects/art/dev/lib$ cd ../src ~/projects/art/dev/src$ Artur