vim 中的 pythoncomplete - 硬编码工厂函数返回?

发布于 2024-08-09 02:52:15 字数 425 浏览 13 评论 0原文

我在 vim 中使用 pythoncompleteomnicompletion 。 当我直接实例化类时,它效果很好,例如,

import numpy as np
x = np.ndarray(l)

然后 x 属性正确完成。

但我使用 numpy 和 matplotlib,所以通常使用工厂函数,即

x = np.zeros((2,2)) 
f = plt.figure()  
ax = f.add_subplot(111)

有什么方法可以对这些常用函数的返回类型进行硬编码,以便我可以完成返回的对象。 (即设置一些映射,让 matplotlib.pyplot.figure 返回 matplotlib.figure.Figure、np.zeros 返回 np.ndarray 等?

I'm using pythoncomplete omnicompletion in vim.
It works great when I instantiate classes directly, eg

import numpy as np
x = np.ndarray(l)

then x attributes complete correctly.

But I work with numpy and matplotlib so usually use factory functions ie

x = np.zeros((2,2)) 
f = plt.figure()  
ax = f.add_subplot(111)

Is there any way I can hard code the return types of these common functions so I can complete on the returned object. (ie set up some mappings that matplotlib.pyplot.figure returns matplotlib.figure.Figure, np.zeros returns np.ndarray etc.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光磨忆 2024-08-16 02:52:15

尝试 jedi-vim

您面临的问题有一个悬而未决的问题。我认为它很有可能在 3-4 个月内得到修复: https://github .com/davidhalter/jedi/issues/372

Jedi 也是 YouCompleteMe 以及几乎所有其他不错的 Python 自动完成插件。

Try jedi-vim.

There's an open issue for the problem you're facing. I think there's a good chance that it will be fixed in 3-4 months time: https://github.com/davidhalter/jedi/issues/372.

Jedi is also the library used behind YouCompleteMe and almost every other decent autocompletion plugin for Python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文