Adding Vi To Your Zsh
dougblack.io
Adding Vi To Your Zsh
1–9 of 9 posts
Re: Adding Vi To Your Zsh
#2I use https://github.com/robbyrussell/oh-my-zsh which has a nice vi-mode plugin, built in indicators like you mentioned too
Re: Adding Vi To Your Zsh
#3bindkey "^B" history-beginning-search-backward
You can type the start of a command and then hit Ctrl-B to search for similar commands in your history that had the same prefix.
Re: Adding Vi To Your Zsh
#4Thanks for "export KEYTIMEOUT=1"! I use https://github.com/robbyrussell/oh-my-zsh which has a nice vi-mode plugin, built in indicators like you mentioned too
Re: Adding Vi To Your Zsh
#5Re: Adding Vi To Your Zsh
#6RPS1="${${KEYMAP/vicmd/⚡}/(main|viins)/}"
Re: Adding Vi To Your Zsh
#7Thanks for "export KEYTIMEOUT=1"! I use https://github.com/robbyrussell/oh-my-zsh which has a nice vi-mode plugin, built in indicators like you mentioned too
Re: Adding Vi To Your Zsh
#8Thanks for "export KEYTIMEOUT=1"! I use https://github.com/robbyrussell/oh-my-zsh which has a nice vi-mode plugin, built in indicators like you mentioned too
Re: Adding Vi To Your Zsh
#9I also use this binding: bindkey "^B" history-beginning-search-backward You can type the start of a command and then hit Ctrl-B to search for similar commands in your history that had the same prefix.