3

我已经学习python大约一个月了,我使用emacs24.3和jedi来编写python代码。绝地武士效果很好,我很喜欢。但是,我想让自动完成菜单更紧凑: 在此处输入图像描述 我们可以看到自动完成信息有一些冗余,并且由于自动完成菜单太长而隐藏了文档信息。代替:

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 的自动完成弹出菜单进行比较。 在此处输入图像描述

4

1 回答 1

1

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

您可能想观看此拉取请求。审查过程接近完成。

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


编辑:

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

于 2013-04-22T10:55:38.953 回答