-
Notifications
You must be signed in to change notification settings - Fork 29.5k
New issue
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
Auto show tag suggestions when you type < in jsx #40539
Comments
We would likely only want to enable this for cases like: (
<div>
<|
</div>
) where the user is typing inside of jsx already. Otherwise, we would risk triggering on the less than operator |
Depends on microsoft/TypeScript#21012 |
I don't understand what I should see. Seems the same as 1.23 |
Thanks for taking a look @roblourens. This only applies if you are inside of a jsx context already. For example try typing const a = <div>
|
</div> After typing the |
Oh I do see it in jsx but not in tsx, is that right? |
Actually, I see it in tsx in one case. But it seems kind of flaky. Trying in several files, it seems like it works in some and not others. |
But then after reloading the window it worked |
From #24524
Feature Request
Automatically show tag suggestions when you type
<
in a jsx fileThe text was updated successfully, but these errors were encountered: