atom-autocomplete-php
atom-autocomplete-php copied to clipboard
Improvements for autocompletion and goto
This PR adds some improvements/fixes:
- correctly allow "go to declaration" when clicking on expressions with scope resolution operator
::
, e.g.MyClass::class
to go toMyClass
- sort exact matches of search string first in autocomplete suggestions
- remove duplicate suggestions for variable names
- correctly scope variable name suggestions to current function
fixes #368 fixes #366