Re: Syntax region not working as expected

2014-03-26 Thread Charles Campbell
Pedro Paulo Palazzo wrote: Hello, new to the group. I am trying to prevent the vim spell check from highlighting citekeys in Markdown texts (in the format [@Author:1999ab, p.\ 99]). for this, I set up a syntax line in .vimrc: code syntax region ExCitation start=\[@ skip=\\\] end=\]

Syntax region not working as expected

2014-03-25 Thread Pedro Paulo Palazzo
Hello, new to the group. I am trying to prevent the vim spell check from highlighting citekeys in Markdown texts (in the format [@Author:1999ab, p.\ 99]). for this, I set up a syntax line in .vimrc: code syntax region ExCitation start=\[@ skip=\\\] end=\] contains=@NoSpell /code However,