diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-10 20:44:21 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-10 20:44:21 -0800 |
commit | 99c6face9bd7cd86c22293201ab0645bb613f6d4 (patch) | |
tree | 4a5253121ea7488acf8246df5899a2619b27a368 /txr.vim | |
parent | 858859cf6fd6becef038cf4d9c1e650c3f2a9cc6 (diff) | |
download | txr-99c6face9bd7cd86c22293201ab0645bb613f6d4.tar.gz txr-99c6face9bd7cd86c22293201ab0645bb613f6d4.tar.bz2 txr-99c6face9bd7cd86c22293201ab0645bb613f6d4.zip |
* txr.vim (txr_atat): New match. The @@ sequence is recognized
properly and highlighted.
Diffstat (limited to 'txr.vim')
-rw-r--r-- | txr.vim | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -65,6 +65,7 @@ syn keyword txl_keyword contained list-vector assoc assq acons acons-new syn keyword txl_keyword contained aconsq-new alist-remove alist-nremove copy-cons syn keyword txl_keyword contained copy-alist merge sort find set-diff length +syn match txr_atat "@[ \t]*@" syn match txr_comment "@[ \t]*#.*" syn match txr_contin "@[ \t]*\\$" syn match txr_hashbang "^#!.*" @@ -91,6 +92,7 @@ syn region txr_quasilit contained oneline start=+`+ skip=+\\\\\|\\`+ end=+`+ con syn region txr_regex contained oneline start=+/+ skip=+\\\\\|\\/+ end=+/+ syn region txr_regdir oneline start=+@[ \t]*/+ skip=+\\\\\|\\/+ end=+/+ +hi def link txr_atat String hi def link txr_comment Comment hi def link txr_hashbang Comment hi def link txr_contin Comment |