We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
非常感觉您的项目, 正是我需要的. 然后我还有另外一项功能, 不知道该怎么实现了. 您有空帮忙看看.
我想实现内置一些class, function, variable到编辑器中, 这些都需要是动态注入的,可能经常变化. 而且没有实现,只有声明.
我能想到的是使用 .pyi 文件来做这件事. 但是不知道该怎么把我自定义的文件注入到pyls/lsp/jedi中
ex: ide.pyi
class Person: def study(self) -> None: ... def play(self) -> None: ...
当我写如下代码时, 第一行的Person, 第二行的study 都能够自动提示出来
p = Person() p.study()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
非常感觉您的项目, 正是我需要的. 然后我还有另外一项功能, 不知道该怎么实现了. 您有空帮忙看看.
我想实现内置一些class, function, variable到编辑器中, 这些都需要是动态注入的,可能经常变化. 而且没有实现,只有声明.
我能想到的是使用 .pyi 文件来做这件事. 但是不知道该怎么把我自定义的文件注入到pyls/lsp/jedi中
ex: ide.pyi
当我写如下代码时, 第一行的Person, 第二行的study 都能够自动提示出来
The text was updated successfully, but these errors were encountered: