as the title says, how can achieve this in HTML?
thanks.
“auto_complete_triggers”: [
{“selector”: “text.html”, “characters”: “abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”}
]
as the title says, how can achieve this in HTML?
thanks.
“auto_complete_triggers”: [
{“selector”: “text.html”, “characters”: “abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”}
]
Alright, I’ve got it: "Success! I’ve achieved the desired functionality after a restart. Now, my Sublime Text setup closely matches the appearance and behavior I was aiming for. It took me two days to transition from my VSCode configuration and replicate all my tasks in Sublime. I’m grateful to everyone who assisted me on this journey.
Sublime Text enables auto completions while typing for source
, only, by default.
To also enable it for text
scope as well, auto_complete_selector
can be used.
{
"auto_complete_selector": "source - comment, text - comment",
}