jcjordyn140 / mintty

Automatically exported from code.google.com/p/mintty
GNU General Public License v3.0
0 stars 0 forks source link

Drop down box with latest executed commands #10

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The windows command shell can show the latest executed commands (press F7).
It would be useful if mintty could do something similar.

Original issue reported on code.google.com by kovartht...@gmail.com on 30 Dec 2008 at 8:02

GoogleCodeExporter commented 9 years ago
That's quite a nice feature, but it's an issue for a shell, not a terminal, 
which has
no concept of the commands being run inside it. I wouldn't be surprised if Zsh
already had something like this.

Good ol' Bash has some rather clever history features too though, and with 
MinTTY's
support for modifier keys you can bind them to convenient key combinations. For
example, the following lines in .inputrc will make Ctrl-Up and Ctrl-Down skip 
to the
previous or next history line that matches the current line up to the cursor 
position.

  "\e[1;5A": history-search-backward
  "\e[1;5B": history-search-forward

Original comment by andy.koppe on 31 Dec 2008 at 9:15

GoogleCodeExporter commented 9 years ago

Original comment by andy.koppe on 6 Mar 2010 at 5:15