Thanks so much, I am seeing this error:
>>> sublime.load_resource("/home/myuser/.config/sublime-text-3/Packages/User/Node.sublime-build")
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/opt/sublime_text_3/sublime.py", line 140, in load_resource
raise IOError("resource not found")
`OSError: resource not found``
The first line does return what I expected
>>> window.extract_variables()["packages"] '/home/myuser/.config/sublime-text-3/Packages'
I also tried this:
>>> import sublime_api
>>> sublime_api.load_resource("/home/myuser/.config/sublime-text-3/Packages/User/Node.sublime-build")
which just returns nothing, but does not throw an error
The file does exist, I copied the path from the command line. I don’t see any weird premissions issues with the python files.
Any other ideas?