When adding/changing the bibtex-files in config.cson (bibtex-field), the changes are not immediately reflected but Atom must be restarted. In the console, we get
TypeError: path must be a string(…) provider.coffee:150
Checking that line, I find that upon saving config.cson, the variable bibtexFiles does not hold an array as expected but an Object that contains two arrays, one called oldValue one called newValue. This is the reason for the strange error. I think provider.coffee should handle this case by just extracting newValue from this object in this case.
When adding/changing the bibtex-files in
config.cson
(bibtex
-field), the changes are not immediately reflected but Atom must be restarted. In the console, we getChecking that line, I find that upon saving
config.cson
, the variablebibtexFiles
does not hold an array as expected but anObject
that contains two arrays, one calledoldValue
one callednewValue
. This is the reason for the strange error. I thinkprovider.coffee
should handle this case by just extractingnewValue
from this object in this case.