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.
If you have two plugins that return a similarly named proposal, the one that was inferred or loaded first (from a definition file) is the only one that is returned, see line 795 onward in tern.js:
for (var prop in srv.cx.props) gather(prop, srv.cx.props[prop][0], 0);
That loop should walk all of the entries in srv.cx.props[prop] and gather them all if they come from different origins (and we are asking for origin information).
If you have two plugins that return a similarly named proposal, the one that was inferred or loaded first (from a definition file) is the only one that is returned, see line 795 onward in tern.js:
for (var prop in srv.cx.props) gather(prop, srv.cx.props[prop][0], 0);That loop should walk all of the entries in
srv.cx.props[prop]and gather them all if they come from different origins (and we are asking for origin information).See Eclipse Orion bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=496955 for a concrete example. I'll open a pull request for how we fixed the problem in Orion.
The text was updated successfully, but these errors were encountered: