Fix: refresh linter if the editor.linter changes

This commit is contained in:
eight 2018-08-31 22:31:44 +08:00
parent e7750e7ac9
commit cb77774310

View File

@ -56,3 +56,7 @@ var linter = (() => { // eslint-disable-line no-var
});
}
})();
prefs.subscribe(['editor.linter'], () => {
linter.refresh();
});