我在安装了jedi-vim
的Vim中编写Python代码。有时我的课程很长(特别是当我在unittest.TestCase
课程中添加了数千行的测试时。)
如果我的光标位于课程定义中,我想知道我所在课程的名称。以下是一个例子:
class TestFoo(unittest.TestCase):
def testA(self):
print "does something"
def testB(self):
print "also does something"
^
my cursor is here
当我的光标位于testB
范围内时,我想(通过跳跃或其他方式)知道testB
类属于哪个类别。
这可能吗? (使用jedi-vim
或其他方式)