Error loading tmLanguage and tmTheme files in Sublime Text 3

With Sublime Text 2, I was able to create an output panel with

MyOutputView.set_syntax_file("/Path_to/my.tmLanguage")
MyOutputView.settings().set("color_scheme", "/Path_to/my.tmTheme")

in the current beta version (3047) of Sublime Text 3 two windows appear with the following messages (they are also printed on the console):

Error loading syntax file "/Path_to/my.tmLanguage": Cannot open / Path _to / my.tmLanguage

and

Error loading color scheme / Path _to / my.tmTheme: cannot open / Path _to / my.tmTheme

Is this an error that I have to report, changed the API, made a sublime transition from tmfiles?

0
source share
1 answer

ST3 API , , Packages, Installed Packages, /, . , , - . :

MyOutputView.set_syntax_file("Packages/MyLang/my.tmLanguage")
MyOutputView.settings().set("color_scheme", "Packages/MyColorScheme/my.tmTheme")

.

+1

All Articles