Would you mind sharing what that alias would look like and do? I can only imagine it appending the string "| tmenu" to the current line, eventually pressing Return for the user as well.
Warning: seems like GNU readline isn't case sensitive so C-L === C-l thus, in this example, C-l default behavior (clear screen?) is overridden. I didn't RTFM so trust yourself.
Comments
Zsh completion with the menu style can do that, git checkout <tab> and you get a browseable list of branch names.
or dmenu
Funnily enough, I recently implemented something akin to percol:
https://github.com/dhamidi/tmenu
It actually tries to be dmenu for the terminal.
Glorious, I was about to start a similar thing (in python though). Time to play with your toy.
ps: I'd add a readline/inputrc alias for '| tmenu '
Would you mind sharing what that alias would look like and do? I can only imagine it appending the string "| tmenu" to the current line, eventually pressing Return for the user as well.
Also, a redditor told me about slmenu (dmenu parody for shell)
http://www.reddit.com/r/linux/comments/283ziw/tmenu_dmenu_fo...
Update: the README now describes the available key bindings and gives more usage examples.
Google says it's an x11 app? I prefer something that works on random ssh connections and is more "inline" to the current command context
Ha what a moron I am. The funniest part is that I was ranting on #python about the need for a tui only version of that.
ps: even funnier, someone just posted a personal project doing just that.