vim 中的 python 类成员没有全能补全吗?

发布于 2024-12-28 11:20:30 字数 311 浏览 1 评论 0原文

我想在 python 中为我的类创建标签(ctags 5.8)文件。对于函数,以及在类定义之外定义的类成员,omnicompletion 工作正常。但是,如果我在构造函数中定义数据成员(self.x=2),我看不到 ctags 完成?

class A(object):

    def __init__(self):
        self.x = "whatever"    # x will not seen in ctags/omnicompletion!!!

我做错了什么吗?为什么没有全能补全(ctags 文件看起来没问题)?

I want to create tags (ctags 5.8) file for my classes in python.For functions, and class members defined outside the class definition omnicompletion works ok. However if I define data member in a constructor ( self.x=2 ) I cannot see the ctags completion ?

class A(object):

    def __init__(self):
        self.x = "whatever"    # x will not seen in ctags/omnicompletion!!!

Am I doing sth wrong ? Why there is no omnicompletion (ctags file looks ok) ?

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

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

发布评论

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

评论(1

月亮邮递员 2025-01-04 11:20:30

如果我正确理解你的问题,你总是可以在类定义中添加属性:

class A(object):

    x = None

    def __init__(self):
        self.x = whatever

这样每个阅读你的代码的人都可以看到类具有哪些属性(你称它们为“类成员”)。

更新:检查

$ ctags --version
Exuberant Ctags 5.9~svn20110310, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Mar 18 2011, 10:38:14

生成的标签文件如下所示:

!_TAG_FILE_FORMAT       2       /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED       1       /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR    Darren Hiebert  /[email protected]/
!_TAG_PROGRAM_NAME      Exuberant Ctags //
!_TAG_PROGRAM_URL       http://ctags.sourceforge.net    /official site/
!_TAG_PROGRAM_VERSION   5.9~svn20110310 //
A       aaa.py  /^class A(object):$/;"  c
__init__        aaa.py  /^   def __init__(self, x):$/;" m       class:A
x       aaa.py  /^   x = None$/;"       v       class:A

可以看出,x 属性有自己的记录。

还通过首先创建与 emacs 兼容的标签文件来检查 Emacs:(

ctags -e aaa.py  # where aaa.py - file with code snippet above

这创建了 TAGS 文件)

在 Emacs 内部:

M-. x   (enter)
~/TAGS   (enter)

...瞧!光标位于 x = None 行。

另外,您的原始代码片段不起作用。所以我在类命名空间中初始化属性的建议是有效的。

If I understood your problem right, you can always add attributes in the class definition:

class A(object):

    x = None

    def __init__(self):
        self.x = whatever

This way everyone reading your code sees, which attributes (you are calling them "class members") a class has.

UPDATE: checked with

$ ctags --version
Exuberant Ctags 5.9~svn20110310, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Mar 18 2011, 10:38:14

The resulting tags file looks like this:

!_TAG_FILE_FORMAT       2       /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED       1       /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR    Darren Hiebert  /[email protected]/
!_TAG_PROGRAM_NAME      Exuberant Ctags //
!_TAG_PROGRAM_URL       http://ctags.sourceforge.net    /official site/
!_TAG_PROGRAM_VERSION   5.9~svn20110310 //
A       aaa.py  /^class A(object):$/;"  c
__init__        aaa.py  /^   def __init__(self, x):$/;" m       class:A
x       aaa.py  /^   x = None$/;"       v       class:A

As can be seen, x attribute has its own record.

Also checked with Emacs by creating emacs-compatible tags file first:

ctags -e aaa.py  # where aaa.py - file with code snippet above

(this created TAGS file)

Inside Emacs:

M-. x   (enter)
~/TAGS   (enter)

...and voila! Cursor is at x = None line.

Also, your original snippet doesn't work. So my advice to initialize attribute in the class namespace is valid.

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