配置 PyCharm 以配合 Peewee 的外部文档
Configuring PyCharm to cooperate with Peewee's external documentation
我目前正在尝试让 Peewee 文档在 PyCharm (Ctrl+Q) 中工作。
我试过在设置中添加以下规则,但它并没有真正起作用
http://docs.peewee-orm.com/en/latest/search.html?q={element.name}
有没有办法在 Peewee 文档中使用快速文档功能?我会感谢任何建议。
这是一个部分解决方案,因为可点击的 link 将在外部文档的快速文档中自动为您创建。
在:Settings - Tools - Python External Documentation
为 peewee 添加条目。
模块名称=peewee
url=http://docs.peewee-orm.com/en/latest/peewee/api.html#{class.name}.{function.name}
Shift-F1
是查找外部文档的默认键盘快捷方式
我目前正在尝试让 Peewee 文档在 PyCharm (Ctrl+Q) 中工作。 我试过在设置中添加以下规则,但它并没有真正起作用
http://docs.peewee-orm.com/en/latest/search.html?q={element.name}
有没有办法在 Peewee 文档中使用快速文档功能?我会感谢任何建议。
这是一个部分解决方案,因为可点击的 link 将在外部文档的快速文档中自动为您创建。
在:Settings - Tools - Python External Documentation
为 peewee 添加条目。
模块名称=peewee
url=http://docs.peewee-orm.com/en/latest/peewee/api.html#{class.name}.{function.name}
Shift-F1
是查找外部文档的默认键盘快捷方式