User settings instead of default
Fixes the issue of only getting the default settings from atom.config.getSettings() to get the user settings from atom.config.get()
This commit is contained in:
parent
ae9ff90435
commit
3499c11120
|
@ -105,7 +105,7 @@ findConfig = (config, file, upwards=true) ->
|
|||
return home if verifyExists(home)
|
||||
null
|
||||
getConfigOptionsFromSettings = (langs) ->
|
||||
config = atom.config.getSettings()["atom-beautify"]
|
||||
config = atom.config.get('atom-beautify')
|
||||
options = {}
|
||||
# console.log(langs, config);
|
||||
# Iterate over keys of the settings
|
||||
|
|
Loading…
Reference in New Issue