mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Add isRetrigger field to signature help context
#54972 Instead of having a generic `Retrigger` reason, add a new field on the `SignatureHelpContext` that tracks if this was a retrigger or not. This allows retrigger for all the different trigger reasons, including invoke. Replace the old `Retriggger` trigger reason with `ContentChange` which tracks cursor movement and text updates.
This commit is contained in:
@@ -1115,7 +1115,7 @@ export class SignatureHelp {
|
||||
export enum SignatureHelpTriggerReason {
|
||||
Invoke = 1,
|
||||
TriggerCharacter = 2,
|
||||
Retrigger = 3,
|
||||
ContentChange = 3,
|
||||
}
|
||||
|
||||
export enum CompletionTriggerKind {
|
||||
|
||||
Reference in New Issue
Block a user