Reputation: 11
I have a vs code Extention problem where it makes me frustrating while typing tailwind CSS
Here is before typing tailwind CSS attribute:
After when I start typing the word go somewhere randomly within a class then I have to search and type the class
Here is After typing tailwind CSS attribute:
Please help me out with this problem
Upvotes: 0
Views: 2497
Reputation: 1749
Check your Auto Save
setting on VS Code.
VS Code automatically places the order of the Tailwind Class. In your case, you are having this problem because it is automatically saved and relocated before you completely type the Tailwind Class name.
So, in your case off
will solve your problem.
Go into Settings with Ctrl+Comma
---> type auto save
---> Files:Auto Save
: off
Headwind
option setup change.A setting similar to the picture below will be retrieved when you typed headwind
.
Then try changing option Headwind: Run On Save
at the bottom of the picture.
Upvotes: 3