We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcbc634 commit a27705eCopy full SHA for a27705e
src/features/HelpCompletion.ts
@@ -81,7 +81,9 @@ class TriggerFinder {
81
break;
82
83
case SearchState.Locked:
84
- if (changeText.length === 1 && changeText[0] === this.triggerCharacters[this.count] && document === this.document) {
+ if (document === this.document &&
85
+ changeText.length === 1 &&
86
+ changeText[0] === this.triggerCharacters[this.count]) {
87
this.count++;
88
if (this.count === this.triggerCharacters.length) {
89
this.state = SearchState.Found;
0 commit comments