Re: Tab Tab program/command line editing

1999-07-09 Thread Keith Beattie
On Fri, Jul 09, 1999 at 08:29:18AM -0400, Raymond A. Ingles wrote: > On Tue, 6 Jul 1999, Keith Beattie wrote: > > > Another invaluable NT setting is: > > > > HKEY_CURRENT_USER/Control Panel/Mouse/ActiveWindowTracking > > > > set to 1 - This gives you focus-follows-mouse, yea!!! > > I tried

Re: Tab Tab program/command line editing

1999-07-09 Thread Raymond A. Ingles
On Tue, 6 Jul 1999, Keith Beattie wrote: > Another invaluable NT setting is: > > HKEY_CURRENT_USER/Control Panel/Mouse/ActiveWindowTracking > > set to 1 - This gives you focus-follows-mouse, yea!!! I tried it, because I really like that feature. Sadly, I couldn't use the bookmarks menu on Ne

Re: Tab Tab program/command line editing

1999-07-07 Thread Rick Macdonald
> ktb wrote: > > > > If you hit the tab key twice in a row it lists all available commands. > > This seems like a useless thing because I see no way of sending the > > output to 'less' and most of the 1917 possibilities scroll off the > > screen. Anyway my problem is I get the same result if I hi

Re: Tab Tab program/command line editing

1999-07-06 Thread Ed Cogburn
ktb wrote: > > If you hit the tab key twice in a row it lists all available commands. > This seems like a useless thing because I see no way of sending the > output to 'less' and most of the 1917 possibilities scroll off the > screen. Anyway my problem is I get the same result if I hit the Esc ke

Re: Tab Tab program/command line editing

1999-07-06 Thread Keith Beattie
On Mon, Jul 05, 1999 at 10:45:48PM -0700, Mark Wagnon wrote: > Matthew Dalton wrote: > > > > Me neither. It's a pain in the arse to have to go back to a Windows box > > and use the feature-void dos command shell. > > > > Whenever I have to navigate around in DOS, I'm always hitting tab try to >

Re: Tab Tab program/command line editing

1999-07-06 Thread Steve Lamb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 06 Jul 1999 13:43:35 +1000, Matthew Dalton wrote: >If you don't like it, use a different shell. Zsh has command completion >as well, but pressing does nothing. I think the equivalent >for zsh is ctrl-d. I don't know about any of the other she

Re: Tab Tab program/command line editing

1999-07-06 Thread Brad
On Tue, 6 Jul 1999, Carl Mummert wrote: > >i don't know why it's doing it when you press esc twice. i have to press > >esc four times to do it... > > Is this on a console or over a terminal? It may be that you have to press > escape twice to get a single escape character to be read; that is, > e

Re: Tab Tab program/command line editing

1999-07-06 Thread ktb
Carl Mummert wrote: > > >It's a feature of bash, as has been mentioned. According to the bash > >manpage, you can get rid of it by adding a line "set disable-completion > >on" in your /etc/inputrc (for the entire system) or ~/.inputrc (for > >whichever user's home directory it's in). Be advised yo

Re: Tab Tab program/command line editing

1999-07-06 Thread Mark Wagnon
Matthew Dalton wrote: > > Me neither. It's a pain in the arse to have to go back to a Windows box > and use the feature-void dos command shell. > Whenever I have to navigate around in DOS, I'm always hitting tab try to complete commands. I love the filename completion *feature* --

Re: Tab Tab program/command line editing

1999-07-06 Thread Carl Mummert
>It's a feature of bash, as has been mentioned. According to the bash >manpage, you can get rid of it by adding a line "set disable-completion >on" in your /etc/inputrc (for the entire system) or ~/.inputrc (for >whichever user's home directory it's in). Be advised you have to restart >bash for th

Re: Tab Tab program/command line editing

1999-07-06 Thread ktb
Brad wrote: > > On Mon, 5 Jul 1999, ktb wrote: > > > I'd like to get rid of it unless someone else has a better idea. > > Anyone know the name of this program? > > It's a feature of bash, as has been mentioned. According to the bash > manpage, you can get rid of it by adding a line "set disable-

Re: Tab Tab program/command line editing

1999-07-06 Thread Brad
On Mon, 5 Jul 1999, ktb wrote: > I'd like to get rid of it unless someone else has a better idea. > Anyone know the name of this program? It's a feature of bash, as has been mentioned. According to the bash manpage, you can get rid of it by adding a line "set disable-completion on" in your /etc

Re: Tab Tab program/command line editing

1999-07-06 Thread Matthew Dalton
Me neither. It's a pain in the arse to have to go back to a Windows box and use the feature-void dos command shell. Shao Zhang wrote: > > Well, for me, I cannot live without this feature. > > On Tue, Jul 06, 1999 at 01:43:35PM +1000, Matthew Dalton wrote: > > It's not a bug, its a feature. > > >

Re: Regroup/Tab Tab program/command line editing

1999-07-06 Thread ktb
Thanks everyone for the info about tab completion. I've used that from time to time myself but this is getting away from my original message. I get 'tab completion' when I use the Esc key. I'm happy to leave tab completion bound to the tab key but how do I turn this off when using the Esc key?

Re: Tab Tab program/command line editing

1999-07-06 Thread Ben Finney
[EMAIL PROTECTED] wrote: > If you hit the tab key twice in a row it lists all available commands. Try typing part of a command, then pressing once (without any spaces). For example: $ apro The shell (Bash) will attempt word completion. (In the above example, my system completes the word 'ap

Re: Tab Tab program/command line editing

1999-07-06 Thread Shao Zhang
Well, for me, I cannot live without this feature. On Tue, Jul 06, 1999 at 01:43:35PM +1000, Matthew Dalton wrote: > It's not a bug, its a feature. > > It's called command completion. The (bash) shell is trying to help you > out by finishing off your typing for you. > > If you don't like it, use

Re: Tab Tab program/command line editing

1999-07-06 Thread Robert Maynard Rhyu
Hi, As I understand bash, 'exim' will attempt to complete an argument to exim (with the files in your pwd). 'exim' will attempt to complete a command (in your $PATH) beginning with 'exim'. Robert. [EMAIL PROTECTED] On Mon, 5 Jul 1999, ktb wrote: > When I tried 'exim ' the output listed 156 f

Re: Tab Tab program/command line editing

1999-07-06 Thread Matthew Dalton
It's not a bug, its a feature. It's called command completion. The (bash) shell is trying to help you out by finishing off your typing for you. If you don't like it, use a different shell. Zsh has command completion as well, but pressing does nothing. I think the equivalent for zsh is ctrl-d. I

Re: Tab Tab program/command line editing

1999-07-06 Thread David H. Silber
On Mon, Jul 05, 1999 at 10:14:35PM -0500, ktb wrote: > If you hit the tab key twice in a row it lists all available commands. > This seems like a useless thing because I see no way of sending the > output to 'less' and most of the 1917 possibilities scroll off the > screen. Anyway my problem is I

Re: Tab Tab program/command line editing

1999-07-06 Thread ktb
When I tried 'exim ' the output listed 156 files in my home directory. This is different than the output that you got. Am I experiencing a bug? I'm using Bash for the shell. The Bash man page is large and I may have missed a reference to this function but I didn't see anything listed under "co

Re: Tab Tab program/command line editing

1999-07-06 Thread Steve Lamb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 05 Jul 1999 22:14:35 -0500, ktb wrote: >Anyone know the name of this program? The shell, IIRC. Kent, have you tried something like this? exim yields, for example: [EMAIL PROTECTED]:~} exim exim exim_dumpdbexim_lock e

Tab Tab program/command line editing

1999-07-06 Thread ktb
If you hit the tab key twice in a row it lists all available commands. This seems like a useless thing because I see no way of sending the output to 'less' and most of the 1917 possibilities scroll off the screen. Anyway my problem is I get the same result if I hit the Esc key twice. I'm learnin