Sublime Forum

Questions from my last years Web Design Teacher

#1

Hello everyone,

My Teacher used to use Notepad for her class. I told her about Sublime Text 3 so I am going to send her this post link so she can get her answers.

I have a few questions from my web design teacher about Sublime Text 3
Is there a way to disable autocompletion for HTML, JS and CSS?

0 Likes

#2

Yes. Change these settings from their defaults (below) to an empty string and empty array respectively:

{
    // Controls what scopes auto complete will be triggered in
    "auto_complete_selector": "meta.tag - punctuation.definition.tag.begin, source - comment - string.quoted.double.block - string.quoted.single.block - string.unquoted.heredoc",

    // Additional situations to trigger auto complete
    "auto_complete_triggers": [ {"selector": "text.html", "characters": "<"} ],
}

Or tweak them to her specific preferences.

1 Like

#3

Thank you @michaelblyons :+1:
I will show her how to get around in the settings.

0 Likes