Benjamin Gray
Benjamin Gray
Seems kind of unavoidable, but I’m thinking a similar solution to the one I suggest in #155. This way, any bad highlighting would (hopefully) be confined to the group.
Seconded. All repository is the way to go. Much easier to reuse code and reorder parts.
Perhaps footnotes can get the scope `markup.other.footnote.latex`? The TextMate rules are vague, but the [Sublime Text 3](https://www.sublimetext.com/docs/3/scope_naming.html#markup) page for it suggests this scope for footnotes. I think it would make...
@kylebarron Changing `base` to `self` introduces some unwanted side effects. E.g., ```latex { \begin{fboxverbatim} foo \end{fboxverbatim} } ``` When using `LaTeX Memoir`, the contents was originally verbatim, but the change...
@kylebarron I can't think of anything this breaks. But then again, it's late right now and I'm tired. I'll check back in tomorrow and (probably) merge. My biggest concern was...
Yup, the changes to add `\\begin{\w+}` break all environments. E.g., the `equation` environment will no longer be scoped as math in a memoir document. Personally, I strongly believe we should...
This version 2 better not take too long, or `tree-sitter` will be released before we get there ;)
Yeah, that. It was mentioned in [this blog post](http://blog.atom.io/2018/01/10/the-state-of-atoms-performance.html) under the typing latency section. There are existing examples for some core languages, such as JS and C, but I still...
@yudai-nkt I didn't even realise GitHub had a youtube channel. Anyway, this seems to be a good reference for the concepts (given it's presented by the guy who wrote it)....
No math snippets work because mathmode is a string environment with this package, and strings don't get considered for snippets by the autocomplete-snippet package. See atom/autocomplete-snippets#55 and https://github.com/atom/autocomplete-snippets/commit/28a0af0935baf4e26ca95d4e606dbb5dc53a6bbc. In fact,...