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?

    1 answer 1

    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": "&amp;", "contents": "&amp;" }, { "trigger": "&bull;", "contents": "&bull;" }, { "trigger": "&copy;", "contents": "&copy;" }, { "trigger": "&laquo;", "contents": "&laquo;" }, { "trigger": "&mdash;", "contents": "&mdash;" }, { "trigger": "&nbsp;", "contents": "&nbsp;" }, { "trigger": "&ndash;", "contents": "&ndash;" }, { "trigger": "&raquo;", "contents": "&raquo;" } ] } 
    • Does not work. Check - nowhere was wrong. I checked it myself - I performed the actions exactly according to your instructions. Thank. - Sasha Chernykh