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 has been archived by the owner on May 7, 2021. It is now read-only.
When typing http.met the http.Method constants are shown in the autocomplete menu. Typing http.metp should limit the results using a fuzzy search (MethodOptions, MethodPatch, MethodPost and MethodPut)
Actual Behavior
Typing http.met**p** yields no results in the autocomplete menu
The text was updated successfully, but these errors were encountered:
For autocompletion we currently use the gocode. If it does not support this we are not able to display it either. Please open an issue there.
Beside that the autocomplete-plus package provides a really simple fuzzy matching system. But it is not go specific. It simply takes every word displayed in any open editor and tries to match it with the typed characters. Enable this by unchecking the Suppress The Provider Built-In To autocomplete-plus setting in go-plus. Example:
Description
Autocomplete for go should make use of the fuzzy autocomplete feature used by other implementations.
Related issue for php autocomplete:
https://discuss.atom.io/t/can-autocomplete-suggestions-provided-using-fuzzy-matching-technique/19113/4
Expected Behavior
When typing
http.met
thehttp.Method
constants are shown in the autocomplete menu. Typinghttp.metp
should limit the results using a fuzzy search (MethodOptions
,MethodPatch
,MethodPost
andMethodPut
)Actual Behavior
Typing
http.met**p**
yields no results in the autocomplete menuThe text was updated successfully, but these errors were encountered: