如何在emacs-jedi中使自动完成信息更紧凑?

时间:2013-04-22 10:27:26

标签: python emacs jedi

我一直在学习python大约一个月,我使用emacs24.3和jedi来编写python代码。 绝地非常有效,我非常喜欢。但是,我想让自动完成菜单更紧凑: enter image description here 由于自动完成菜单太长,我们可以看到自动完成信息有一些冗余并隐藏了文档信息。 而不是:

array                          Import: from numpy.core.numeric import array i
array_str                                       Function: numeric.array_str f
array_type Statement: array_type = [{balabalabalaxxxxxxxxxxxxxxxxxxxxxxx }] s

我想要这样的事情:

array               numpy.core.numeric i
array_str            numeric.array_str f
array_type              [{xxxxxx... }] s

这是PyCharm的自动完成弹出菜单,用于比较。 enter image description here

1 个答案:

答案 0 :(得分:1)

popup.el有一个pull请求(emacs-jedi依赖于auto-complete.el,auto-complete.el依赖于popup.el)来解决这个问题: https://github.com/auto-complete/popup-el/pull/28

您可能想要观看此拉取请求。审核过程即将结束。

同时,如果您不想隐藏弹出文档,可以使用pos-tip.el(http://www.emacswiki.org/emacs/pos-tip.el


编辑:

我认为使摘要信息更紧凑是一个很好的建议。为什么不在Jedi的问题跟踪器中发布功能请求:https://github.com/davidhalter/jedi