我正在使用带有 IPython 12 的 emacs24.0.92。我从 IPython 存储库中获取了 ipython.el 文件并尝试了这个补丁,但是自动完成仍然对我不起作用。有人可以给出任何提示吗?
问问题
641 次
1 回答
3
这是一个老问题,但因为我一直在寻找它:
1-python-mode.el
快速搜索让我找到了这个可行的解决方案:http ://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc5
2-绝地
您仍然可以使用以下给出的补全jedi.el
:
http://jedi.jedidjah.ch/en/latest/
http://wikemacs.org/index.php/Python#Jedi
http://aliquote.org/memos/2013/02/11/emacs-auto-completion-for-python
安装packages.el
并调用M-x jedi:setup
. 现在完成在第三个字符处触发。我们仍然无法像在终端中那样使用 TAB 检查对象,但使用第一种解决方案我们可以。
编辑: false,这只是配置的问题:http: //tkf.github.io/emacs-jedi/released/#configuration(使用jedi:complete-on-dot
我们输入一个点就完成)。
于 2014-01-17T10:39:31.103 回答