I want to use vim editing keys in my shell (zsh).

With bindkey -v i get VI keys, but i want visual and more advanced key shortcuts (like change inner word (ciw), which i use all the time)

btw, is superuser the right forum for this question?

link|improve this question

Yes, Super User is a good place for this question. – Troggy Feb 4 '10 at 13:43
feedback

3 Answers

up vote 2 down vote accepted

As for the bash part in the title: You can put bash into vi mode by calling set -o vi (e.g. put that into your .bashrc). To bind functions to specific keys you have to use bind in bash. See help bind to list the available functions and examples of how to call it.

"Change inner word" is not in vi, but vim, so it is not available.

link|improve this answer
set -o vi doesn't work for me. I'm on CentOS 5.x. – molecules Oct 12 '10 at 16:16
feedback

In bash pressing v (in command mode) opens vi(m) with the current content of the command line. You can now edit the line, using every feature of vi(m), and after quitting the line will be automatically executed.

Take a look at this article for a good introduction and a cheat sheet of vi command line editing mode.

link|improve this answer
feedback

I don't see that particular one, but these functions are documented in man zshrle and some of them may be unbound. Search that file for the string "vi-" to find the available vi functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.