我试图让vim-ipython正常工作,并且一直在使用此参考指南(https://github.com/ivanov/vim-ipython)。
首先,我创建了以下目录:
/Users/***/.vim/ftconfig/python/ipy.vim
然而,当我在IPython中输入%edit
时,我仍然得到
No default editor available.
Specify a GUI text editor in the `IPythonWidget.editor` configurable to enable the %edit magic
然后,我尝试在IPython中键入以下内容:
source ipy.vim
我收到了一个错误:
File "<ipython-input-7-505e44392e8d>", line 1
source ipy.vim
^
SyntaxError: invalid syntax
最后,我编辑了ipython_qtconsole.config.py
以包含以下行:
c.IPythonWidget.editor = "/Users/***/.vim/ftplugin/python/ipy.vim"
仍然没有骰子。我可以通过编辑c.IpythonWidge.editor来获得emacs,但是我不知道如何更改它以使用vim作为编辑器。
有什么建议吗?谢谢!