As you can see from this video: https://i.sstatic.net/3nLxr.jpg
When I autocomplete 'class' by pressing 'tab' the text I enter will be 'highlighted'.
You can see, 'tw-grid' is suggested, which should auto-complete as the top suggestion by pressing tab again. However this does not happen, the only way to allow 'tab' to auto complete the top suggestion is to:
Any suggestions to fix this weird highlighting behavior, i would really just like to type 'cl' + tab = class=""
'twg' + tab = class="tw-grid" Without this constant leaving and re-entering the class block
Try disabling this setting:
Editor > Suggest: Snippets Prevent Quick Suggestions // default is enabled
The issue is that when you class
it inserts a snippet: class='|'
with the cursor at the pipe. So you are still inside a snippet and apparently that is enough to prevent your next typing (twg
) to focus any suggestion.