-
Notifications
You must be signed in to change notification settings - Fork 675
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
Add default completion commit characters #1494
Conversation
' ', '{', '}', '[', ']', '(', ')', '.', ',', ':', | ||
';', '+', '-', '*', '/', '%', '&', '|', '^', '!', | ||
'~', '=', '<', '>', '?', '@', '#', '\'', '\"', '\\']; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is one long list 😄 Unsure if all commit characters make sense on all completion item kinds but the API is used as indented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those are precisely the characters we commit on in Visual Studio. 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that there are cases where we tweak the list for various commit characters for some items, but this matches 99.9% of them.
@filipw: Do you want to take a look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this will have a great impact on usability!
Thanks! |
Fixes #1491 and #1487