Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道什么是正确的提问方式,但我会在这里解释。
假设这是我在 eclispe 中的类 django
class DcumentCreate(ParentCreate): parent_model = models.Objective
现在这意味着我正在从类扩展ParentCreate类。
ParentCreate
现在在 Eclipse 中是否有任何设置我应该能够单击那些 ParentCreate 文本并打开该类或文档,而不是浏览文件夹
我真的不知道这是否可能,但只是问
在我的 PyDev 中,它似乎已经有一年的历史了,可以将鼠标放在任何标识符上,然后出现一个工具提示;工具提示有一个指向定义位置的可点击链接。
但是请注意,如果您碰巧有多个 ParentCreate 类,那么 Python IDE 很难真正知道其中哪一个是正确的。
@calderonmluis 提到的 ctrl-click 也有效。