joefitzgerald / autocomplete-go

An Atom autocomplete-plus provider for the Go language that uses gocode to provide suggestions.
Other
29 stars 3 forks source link

It doesn't seem like snippets should be autocompleting inside a token? #18

Open spf2 opened 8 years ago

spf2 commented 8 years ago

One more oddity - is this intended behavior? Is it possible to disable snippets when in the middle of a token...? (Or sort them to the bottom??)

screen shot 2016-04-05 at 11 32 41 am
joefitzgerald commented 8 years ago

They are results from autocomplete-snippets. ac+ ordering is non-deterministic when multiple providers return suggestions; it depends on the order of provider registration (autocomplete-snippets is bundled in core) and the time taken to get the suggestions (snippets will be usually faster).