In Dreamveawer, you could click & he immediately offered a list of special characters - their appearance and spelling (“- & laquo;)
How to add such functionality in Sublime Text 3?
In Dreamveawer, you could click & he immediately offered a list of special characters - their appearance and spelling (“- & laquo;)
How to add such functionality in Sublime Text 3?
Already she found a solution:
Ctrl + Shift + P, Preferences - Settings: User, add a line (without &):
"word_separators": "./\\()\"'-:,.;<>~!@#$%^*|+=[]{}`~?"
Ctrl + Shift + P, Bro, Enter
In the User folder, create an HTML.sublime-completions file with the following contents:
{ "completions": [ { "trigger": "&", "contents": "&" }, { "trigger": "•", "contents": "•" }, { "trigger": "©", "contents": "©" }, { "trigger": "«", "contents": "«" }, { "trigger": "—", "contents": "—" }, { "trigger": " ", "contents": " " }, { "trigger": "–", "contents": "–" }, { "trigger": "»", "contents": "»" } ] }
Source: https://ru.stackoverflow.com/questions/498607/
All Articles