syntax/sub_qc.vim: Don't spell check `\N`
commitc3d1107fe8fe3a0f79e8532fc2a8a9ea47f61570
authorlys <lys@hostname.local>
Fri, 3 Jun 2016 00:03:34 +0000 (3 00:03 +0000)
committerlys <lys@hostname.local>
Fri, 3 Jun 2016 00:03:34 +0000 (3 00:03 +0000)
treea6317dcfcc974355010c7741cd310ca204ae5503
parentf4128ece44ad9b68aae7a1c3db81f3228982b057
syntax/sub_qc.vim: Don't spell check `\N`

The `\N` character represents a newline in ASS. You'll often see it next
to a word (like "\Nsomething"). We don't want to spell check instances
of "Nsomething", but rather the word that comes after the `\N`,
"something".

Set up a syntax rule that ensures `\N` isn't spell checked. We also give
is special highlighting to distinguish it from normal text. Words after
`\N` will be spell checked.
syntax/sub_qc.vim