You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 15, 2023. It is now read-only.
If I type "foo", when I type the last ", whether it was there already or not, the autocomplete pops up for no apparent reason, leading to an autocomplete for append if enter is hit.
This manifests in particular with switches function calls, and struct initializations, as the autocomplete stays up even when you type : and ,.
For example:
switch test {
case "foo": // At this point, if you hit enter, it'll put in `append` rather than a newline.
If I type
"foo", when I type the last ", whether it was there already or not, the autocomplete pops up for no apparent reason, leading to an autocomplete for append if enter is hit.This manifests in particular with switches function calls, and struct initializations, as the autocomplete stays up even when you type
:and,.For example: