Thomas Smith

Results 166 comments of Thomas Smith

Nothing seems like it would obviously conflict. Can you run the following in the Sublime terminal and post the result? ``` sublime.find_syntax_by_scope('source.js.css') ```

@IvanIsakof Just pinging you in case you missed my comment.

That means that, somehow, the Styled Components syntax is not getting loaded. The only thing I can think of that would cause that is if you have the core CSS...

Can you close and reopen Sublime, then copy-paste the console output here? There might be something in there explaining why the Styled Components syntax is not loading.

Is there any message about the `Packages/Babel/Styled Components.sublime-syntax` syntax? That's what provides the `source.js.css` scope.

I mean, in the log messages when Sublime starts up, is there possibly a message about the Styled Components syntax like there is about the Babel syntax?

Thanks. > `ignored_packages: ["CSS", "JavaScript", "Vintage"]` This is the problem. The Babel syntax relies on the Styled Components syntax, which in turn relies on the core CSS syntax (as of...

See https://github.com/yaml/yaml-spec/issues/36. This is a known defect in 1.2. In an upcoming revision of the 1.2 spec, we'll be clarifying that this behavior is implementation-defined. In the 1.3 spec, we'd...

Minimal example: ``` return a ? (a) : (a < 5); let x; ``` The bug is in Flow only, not in TypeScript, so there should hopefully be a simple...