I'm writing a Powerline theme for IPython and I'd like to show the Vi mode in the prompt. That will be useful but is it possible? Does IPython provide a method? I couldn't find it.
1
There are 1 best solutions below
Related Questions in IPYTHON
- Matplotlib does not display interactive graph in Ipython
- Installing ipython inside virtual environment
- Executing Javascript cells in Jupyter Notebooks
- How to stop the iPython notebook to run the command line, run only python code
- From 2 column csv to 2 color NetworkX graph
- How to reduce Ipython parallel memory usage
- IPython MPI with a Machinefile
- Print into console terminal not into cell output of IPython Notebook
- Ipython Notebook server running, but can't load the page
- How to modify the line width of ipython notebook markdown cell
- MemoryError: ipython convnet module. Is it normal?
- Plot into Pycharm's IPython console
- multiprocessing in iPython: too many files open when I'm not opening any files?
- Adding syntax to IPython?
- Prevent Python kernal from crashing when running an application in QT
Related Questions in POWERLINE
- powerline status-line on ubuntu server 14.04 (no gui)
- Urxvt - powerline wrong color
- Custom emacs powerline themes
- How to update macOS Python packages
- How to get the current Vi mode in IPython
- patched powerline fonts on gnome-terminal not working (archlinux + GNOME)
- Alacritty font rendering
- How do I remove the exit code part of the powerline prompt
- VSCode Powerline symbols overlap in integrated terminal
- Problem: Shutting down pc resets powerline fonts so they don't appear in VS Code (but they do in Ubuntu terminal)
- Powerline - No such file or directory /scripts/powerline-config
- Heredoc with powerline
- powerline jason messed up after trying to restart using "powerline-daemon --replace"
- tmux powerline symbols not rendering properly despite having proper fonts installed
- Fish theme "bobthefish" not showing special symbols
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Since IPython has switched to
prompt_toolkitit does not, indeed, respect.inputrc, there are plane to do so butprompt_toolkit(PTK) author need to find time (or funds to work on it...).PTK have a vi input mode which is not perfect (Bug reports and PR welcome), and can be enable in IPython. Better than just give you the answer, here is how to find it yourself. run
ipythonwith--help-alloption, grep forvi, and keep a couple of lines after (-A2) and after before (-B2):So there you go, you can start IPython with
--TerminalInteractiveShell.editing_mode='vi', or set the configuration option in the IPython configuration filec.TerminalInteractiveShell.editing_mode='vi'.You can also find all configuration options in the online IPython documentation.