From 99c6face9bd7cd86c22293201ab0645bb613f6d4 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 10 Dec 2011 20:44:21 -0800 Subject: * txr.vim (txr_atat): New match. The @@ sequence is recognized properly and highlighted. --- ChangeLog | 5 +++++ txr.vim | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 51b26334..a0755175 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-12-10 Kaz Kylheku + + * txr.vim (txr_atat): New match. The @@ sequence is recognized + properly and highlighted. + 2011-12-10 Kaz Kylheku Bignum support in mult function. diff --git a/txr.vim b/txr.vim index be69d370..59f1380c 100644 --- a/txr.vim +++ b/txr.vim @@ -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 -- cgit v1.2.3