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
After selecting a constructor or method completion and editing the resulting document, it should be possible to re-display the parameter information by initiating the same completion proposal just after the opening parenthesis or comma in the argument list.
The Java editor displays this as such:
NOTE: CompletionNodeFinder.createContextForCallContext is the start of this process. It is working fine for constructors but not methods (at least ones without an object expression). Then GroovyJavaMethodCompletionProposal is not setting context information position for this case (first return statement in computeReplacementString(). Lastly, org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal circa line 1000 is not causing the context information to be displayed for some reason.
The text was updated successfully, but these errors were encountered:
selection range should not be changed (or else cursor will move)
completion offset (in nested proposal) should be name end
context information position should be name end + 1
replacement offset should be cursor position
After selecting a constructor or method completion and editing the resulting document, it should be possible to re-display the parameter information by initiating the same completion proposal just after the opening parenthesis or comma in the argument list.
The Java editor displays this as such:
NOTE:
CompletionNodeFinder.createContextForCallContext
is the start of this process. It is working fine for constructors but not methods (at least ones without an object expression). ThenGroovyJavaMethodCompletionProposal
is not setting context information position for this case (firstreturn
statement incomputeReplacementString()
. Lastly,org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal
circa line 1000 is not causing the context information to be displayed for some reason.The text was updated successfully, but these errors were encountered: