cm0002@lemmy.world to Programmer Humor@programming.dev · 8 days agoLinux Userslemmy.mlimagemessage-square149fedilinkarrow-up11.24Karrow-down125cross-posted to: [email protected]
arrow-up11.21Karrow-down1imageLinux Userslemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 8 days agomessage-square149fedilinkcross-posted to: [email protected]
minus-squareT156@lemmy.worldlinkfedilinkEnglisharrow-up3·edit-28 days agoBeing able to just enter a partial command, and hit [up] to jump to prior commands that started in the same way in zsh is a godsend.
minus-squareEntitle9294@lemmy.worldlinkfedilinkarrow-up2·edit-28 days agoIf you ever have to go back to bash, it supports it as well. In my bashrc: bind '"\C-p":history-search-backward' That’s ctrl-p, but I’m sure the up arrow is possible too.
minus-squarebss03@infosec.pubcakelinkfedilinkEnglisharrow-up1·8 days agoI use vim keybindings and have ESC,/ to do a reverse command search.
Being able to just enter a partial command, and hit [up] to jump to prior commands that started in the same way in zsh is a godsend.
If you ever have to go back to bash, it supports it as well. In my bashrc:
bind '"\C-p":history-search-backward'
That’s ctrl-p, but I’m sure the up arrow is possible too.
I use vim keybindings and have
ESC,/
to do a reverse command search.