We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem Some signature help providers need to know why they are triggered. See microsoft/TypeScript#24915 for more details on one use case
Proposal Pass the triggerCharacter to the provideSignatureHelp call. This could be introduced in a context parameter at the end of the parameter list:
triggerCharacter
provideSignatureHelp
context
export interface SignatureHelpContext { triggerCharacter?: string; } export interface SignatureHelpProvider { provideSignatureHelp(document: TextDocument, position: Position, token: CancellationToken, context: SignatureHelpContext): ProviderResult<SignatureHelp>; }
The text was updated successfully, but these errors were encountered:
Moving to more generic proposal: #54972
Sorry, something went wrong.
jrieken
mjbvz
No branches or pull requests
Problem
Some signature help providers need to know why they are triggered. See microsoft/TypeScript#24915 for more details on one use case
Proposal
Pass the
triggerCharacter
to theprovideSignatureHelp
call. This could be introduced in acontext
parameter at the end of the parameter list:The text was updated successfully, but these errors were encountered: