如何将iPython的默认编辑器从记事本更改为VIM?

62lalag4  于 2022-11-11  发布在  Python
关注(0)|答案(1)|浏览(109)

如何将iPython的.py文件默认编辑器从记事本更改为VIM?我目前在Windows 10上运行iPython。
Ipython文档状态(https://ipython.readthedocs.io/en/stable/config/details.html

  • “您还可以通过在ipython_config. py中设置TerminalInteractiveShell.editor来控制编辑器。"*

在文件ipython_config.py中,以下几行似乎是需要修改的相关行:


# Set the editor used by iPython (default to $EDITOR/vi/notepad)

# c.TerminalINteractiveShell.editor = 'mate -w'

我应该做些什么改变使vim成为默认值?

3ks5zfa0

3ks5zfa01#

我没有使用windows,但我认为这样修复:

ipython --TerminalInteractiveShell.editor=c:/usr/bin/vim/gvim.exe

检查this链接。

相关问题