diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-04-05 16:18:01 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-04-05 16:18:01 -0700 |
commit | 3a495eab4dcd66f8555828231e293b2d3cf307ef (patch) | |
tree | df93c9247055882983a9a96249a67fabd8402e08 /txr.vim | |
parent | 34d0567bce45cc89fc6f476353b00b2649bcce4d (diff) | |
download | txr-3a495eab4dcd66f8555828231e293b2d3cf307ef.tar.gz txr-3a495eab4dcd66f8555828231e293b2d3cf307ef.tar.bz2 txr-3a495eab4dcd66f8555828231e293b2d3cf307ef.zip |
* txr.vim: @[...] syntax not marked as "contained" because it
can freely occur, and is useful in @(output).
Diffstat (limited to 'txr.vim')
-rw-r--r-- | txr.vim | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ syn region txr_bracket contained matchgroup=Delimiter start="\[" matchgroup=Deli syn region txr_mlist contained matchgroup=Delimiter start="@(" matchgroup=Delimiter end=")" contains=txl_keyword,txr_string,txl_regex,txr_num,txl_ident,txr_metanum,txr_list,txr_bracket,txr_mlist,txr_mbracket,txr_quasilit,txr_chr,txr_quote,txr_unquote,txr_splice,txr_dot,txr_dotdot,txr_ncomment,txr_nested_error -syn region txr_mbracket contained matchgroup=Delimiter start="@\[" matchgroup=Delimiter end="\]" contains=txl_keyword,txr_string,txl_regex,txr_num,txl_ident,txr_metanum,txr_list,txr_bracket,txr_mlist,txr_mbracket,txr_quasilit,txr_chr,txr_quote,txr_unquote,txr_splice,txr_dot,txr_dotdot,txr_ncomment,txr_nested_error +syn region txr_mbracket matchgroup=Delimiter start="@\[" matchgroup=Delimiter end="\]" contains=txl_keyword,txr_string,txl_regex,txr_num,txl_ident,txr_metanum,txr_list,txr_bracket,txr_mlist,txr_mbracket,txr_quasilit,txr_chr,txr_quote,txr_unquote,txr_splice,txr_dot,txr_dotdot,txr_ncomment,txr_nested_error syn region txr_string contained oneline start=+"+ skip=+\\\\\|\\"+ end=+"+ syn region txr_quasilit contained oneline start=+`+ skip=+\\\\\|\\`+ end=+`+ contains=txr_variable,txr_metanum,txr_bracevar,txr_mlist,txr_mbracket |