AtomLinter / linter-spell-latex

Provider for Atom linter-spell package to enable LaTeX spell checking.
MIT License
8 stars 7 forks source link

Add block comment support #29

Closed Aerijo closed 6 years ago

Aerijo commented 6 years ago

Adds support for the comment environment. This is an explicitly valid scope in the textmate documentation.

\begin{comment}
This is a block comment
\end{comment}

It could possibly have environment in the scope somewhere? I don't really understand the existing scopes in language-latex, as they seem to be a mix of convenience for syntax highlighting and trying to approximate the types of actual programming languages. I just merged support for this environment into language-latex with the scope comment.block.latex though, so this will work with the next release of that package.

yitzchak commented 6 years ago

Thanks!