Thomas Smith
Thomas Smith
There is not currently a way to specially highlight that. When https://github.com/sublimehq/Packages/pull/1641 is merged, I can start working on a system to allow highlighting of custom identifiers, and that may...
FWIW, [JS Custom](https://github.com/Thom1729/Sublime-JS-Custom) provides a `jsx_close_tag` command, and by default replaces the built-in `close_tag` command in JSX scopes.
I agree that it should work out of the box. If it's possible to substantially improve the behavior via the syntax, then I'm all for it. I'm not sure if...
I have a similar issue when generating syntaxes for JS Custom's unit tests. I plan to address this by polling `sublime.list_syntaxes()` and running the tests when the generated syntax is...
As a rule, YAML mappings are not ordered. Two YAML documents that differ only in key order are semantically equivalent, and code that processed YAML documents may freely re-order keys....
I haven't actually done much work on pyyaml, and I'm not sure why it uses an ordered dict. However, in Python 3.6, the basic `dict` implementation is ordered anyway, so...
It's possible that the initial build of syntaxes didn't work for some reason. Try this: 1. Restart Sublime. 2. If there's a message dialog about installing new dependencies, restart again....
That's strange. There's some kind of build error, but a) I don't know why that error would be occurring, and b) I don't know why it would be occurring for...
Just to expand on this: When a node is parsed, if it doesn't have an explicit tag, it's assigned one of the two “non-specific tags”. Non-plain scalars (i.e. quoted scalars...
It's a fundamental part of the YAML representation model that a node has exactly one tag. This one tag is used to determine the canonical form of scalar content and...