In bash, I can bind the Up and Down arrow keys to history search with
"\e[5~": history-search-backward
"\e[6~": history-search-forward
in ~/.inputrc
.
If at the prompt I type ca
and then the Up key, it will bring the next command line in history that matches ca
as the beginning.
Using Ctrl + R for (reverse-i-search)
is useful, and PS has this.
But I find the bindings above quite more efficient to work.
Can this be achieved with PowerShell?