Currently in Bash I use set -o vi to enable vi mode in my bash prompt.
set -o vi
How do I get this going in ipython?
Note: If an answer applies t
ipython uses the readline library and this is configurable using the ~/.inputrc file. You can add
ipython
~/.inputrc
set editing-mode vi
to that file to make all readline based applications use vi style keybindings instead of Emacs.
readline