ipython f2 ========== Today I accidentally ran f2 in ipython to discover that it opens your $EDITOR! I use this feature quite often in zsh, it is bound to for me, and since I have... Date: April 18, 2024 Today I accidentally ran f2 in ipython to discover that it opens your $EDITOR! I use this feature quite often in zsh, it is bound to `` for me, and since I have my environment variable `EDITOR` set to `nvim` it opens nvim when I hit ``. Today I discovered that Ipython has this bound to `F2`. If you know how to set it to `` let me know I've tried, a lot. ``` bash export EDITOR=nvim ipython ``` better yet add `export EDITOR=nvim` to your .zshrc ``` bash # ~/.zshrc export EDITOR=nvim ```