Sublime Text 3 started freezing (https://youtu.be/8w26P5bx9E8) after I installed a bunch of packages… The following error message popped up occasionally: “Port(35729) is already using, trying (35730).” Initially I thought the “LiveReload” and “auto-save” packages were the culprit, but it turned out my custom User Settings (below) for the “Normalize Indentation” package caused the issue.
{
“convert_on_open”: true,
“convert_on_activate”: true
}
Setting the above User Settings back to the default of “false” resolved the issue for me. Hopefully this saves someone some time.
Out of curiosity, does anyone know what “convert_on_activate” means?