我刚刚找到了 Sublime Text 2,它很棒。我真正想念的唯一一件事是能够查看我正在处理的函数的文档字符串。有没有可以做到这一点的插件?
例如:
def f(x):
'''a doc string for f'''
print x
f # << at this point, either automatically or with a keystroke,
# I would like to be able to somehow view "a doc string for f"
编辑:我已经尝试使用 SublimeCodeIntel 和 SublimeRope,都没有这样的支持。
Edit2:它也应该适用于打开项目中的其他模块。