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
Thank you for this wonderful project. I enjoy using it for quite some time.
However, I noticed that it seems to lack the ability to do semantic completion for:
If I have a hash table
%b={ "apple"=>"good", "orange"=> "bad", } $a=\%b
It seems that it cannot auto-complete for neither $a->{ nor %b{, which IMHO is possible and would be really helpful.
$a->{
%b{
I have not fully checked the document and code, so if the feature is already included I sincerely apologize in advance.
The text was updated successfully, but these errors were encountered:
This is difficult to do for the same reason it's difficult to know what methods are available on a variable.
We could collect all hash keys found in the document and offer those for auto complete but it's impossible to know what the keys are across files.
Sorry, something went wrong.
No branches or pull requests
Thank you for this wonderful project. I enjoy using it for quite some time.
However, I noticed that it seems to lack the ability to do semantic completion for:
If I have a hash table
It seems that it cannot auto-complete for neither
$a->{
nor%b{
, which IMHO is possible and would be really helpful.I have not fully checked the document and code, so if the feature is already included I sincerely apologize in advance.
The text was updated successfully, but these errors were encountered: