-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
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
Suggestions appearing in places where no suggestions should appear #141
Comments
Sorry, accidentally hit Enter in the subject line. Description is there now. 😞 |
@csnover can you give me a screenshot? Note: suggestions will appear inside comments. I actually find those helpful. I think they appear from other default providers that come with |
I can’t think of a reason to tell users all the possible completions like this. I’ve never had an IDE do this without explicit request (i.e. hotkey), because as you noted in that commit it breaks all sorts of things (and it isn’t helpful). This is not matching normal autocomplete-plus behaviour. Try typing in a JavaScript file and note that autocompletes don’t start until you actually start typing a word, not punctuation. |
I suspect this may also be breaking auto-indent, which seems to have stopped working properly at some point within the last couple of weeks. |
I've noticed as well. I'd be happy for a fix. Working on better panels right now though. |
I think moving to a dynamic code based grammar parsing broke it. Before that it was taken care by us inheriting from |
@basarat Me Too! |
Nice to see it's been marked as high priority. |
I haven't found a better solution than the one I've commited (no autocomplete after |
Finish a statement, e.g.
With the cursor at
/*1*/
or/*2*/
, after having typed the previous;
or\t
, suggestions will appear, but should not.The text was updated successfully, but these errors were encountered: