Sublime Forum

Livereload plugin needs to enabled every time i start sublime text 3

#1

i have installed sublime text 3 (3114) in linux mint cinnamon 18 x64.
livereload package works fine as soon as in enable “simple reload” plugin.
when i close ST3 and reopen, i have to enable that plugin again.

if i put {
“enabled_plugins”: [
“SimpleReload”
]
}
in livereload setting-user, it doesn’t solve the problem.
what is the solution of this problem? what i have to do to permanently enable simple reload plugin?

0 Likes

#2

no one knows about this?

0 Likes

#3

You should click Preferences >> Browse Packages... and open the User directory. Inside that directory create a file LiveReload.sublime-settings and put your settings there.

0 Likes

#4

that file already exists there with this setting
{
“enabled_plugins”: [
“SimpleReload”
]
}

0 Likes

#5

Doing this results in this link.

As a result of this (and actually trying it out locally by installing the plugin just to make sure), try this instead:

{
    "enabled_plugins": [
        "SimpleReloadPlugin"
    ]
}

Verified to make the page reload on save even if you quit Sublime and restart it without doing anything other than changing the file and saving. I also checked by using the command palette to select that plugin from the Enable/Disable list in LiveReload and noticed the status bar saying it was disabling the plugin instead of enabling it.

1 Like

#6

thanks a lot. it worked

0 Likes