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.
我正在为我的 python 项目使用 epy/ropemacs。如果目标是我的源文件,“Cc g”(rope-goto-definition)可以正常工作。但它不会跳转到第三方源文件。我想要做的是跳转到相关的第三方源文件。
这可能只是让绳子知道图书馆的路径的问题。我不知道该怎么做。任何指示都会有所帮助
好的,找到了解决方案。编辑.ropeproject/config.py并将这些行添加到set_prefs函数
def set_prefs(prefs): ... prefs.add('python_path', '<你的外部库的路径>')
示例: prefs.add('python_path', '/usr/local/google_appengine')