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
Fixesmicrosoft#34863
**Bug**
Quick suggestions currently check the token at the cursor location to determine if we are in a string or comment. Because token spans are setup like: `[start, end)`, this results in the incorrect token being checked when the quick suggestions are triggered immediatly before a comment or string
**Fix**
Check the token one index back from the cursor
Steps to Reproduce:
1.In a js file:
''
and typea
Expected
Should trigger quick suggestions
Actual
Does not trigger quick suggestions
The text was updated successfully, but these errors were encountered: