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
Create a generic function that finds all words in a given source code file (language agnostic)
here https://github.com/spyder-ide/spyder/blob/master/spyder/utils/introspection/utils.py
To filter out letters or tokens we could use the information stored on pygments.
So that we can make inline completions on word type (like VS CODE does).
We need to write test for a couple of different files (c, C++, python, R, HTML, CSS)
The text was updated successfully, but these errors were encountered:
But that's what the fallback completer is doing right now, isn't it?
Sorry, something went wrong.
Nope, not for EVERY word... only for special words of the language. Look at VS code
Hello @goanpeca @ccordoba12
I have been working on code completion widget.
It can be associated with the three actual plugins (Jedi, Rop, fallback ) fight for completion task for same user input text.
I'm planning to have a first PR with this changes.
I think that we are in a good way for having a better code completion feature, thanks for your fantastic suggestions @ccordoba12, @goanpeca
9fcd78f
No branches or pull requests
Create a generic function that finds all words in a given source code file (language agnostic)
here
https://github.com/spyder-ide/spyder/blob/master/spyder/utils/introspection/utils.py
To filter out letters or tokens we could use the information stored on pygments.
So that we can make inline completions on word type (like VS CODE does).
We need to write test for a couple of different files (c, C++, python, R, HTML, CSS)
The text was updated successfully, but these errors were encountered: