The vi-mode tag has no wiki summary.
0
votes
1answer
27 views
Issues using sublime text to edit command line in VI mode
I am using the following to edit the current command line in Sublime Text 2 (using a working subl alias)
.zshrc
set -o vi
EDITOR='subl'; export EDITOR
bindkey -M vicmd v edit-command-line
...
3
votes
2answers
491 views
How to unset set -o vi?
I wanted to try vi mode in bash but now I would like to change it back to normal.
How can I unset -o vi ?
5
votes
0answers
52 views
Change PS1 without hitting enter [duplicate]
Possible Duplicate:
Change cursor shape (or color) to indicate vi mode in bash
I am using vi-mode in a bash shell, and I would like to change the PS1 variable whenever I am in insert mode. ...
7
votes
1answer
1k views
How do I perform a reverse history search in ZSH's vi-mode?
I use vim for essentially all my editing needs, so I decided to once again try vi-mode for my shell (currently ZSH w/ oh-my-zsh on OS X), but I find myself trying (and failing) to use Ctrl-R ...