diff options
author | 2010-08-27 10:18:05 +0100 | |
---|---|---|
committer | 2010-08-27 10:18:05 +0100 | |
commit | 6c983cf21b9434df73d7c4f24edfb3a86a92d158 (patch) | |
tree | e2cc85782771ce7076722ef1b1d1ad32ef8eaa82 /vim | |
parent | 3c8d136cc5ea32b19e8c4677ef1b639cf997ab1b (diff) | |
download | paludis-6c983cf21b9434df73d7c4f24edfb3a86a92d158.tar.gz paludis-6c983cf21b9434df73d7c4f24edfb3a86a92d158.tar.xz |
Better syntax for output.conf
Diffstat (limited to 'vim')
-rw-r--r-- | vim/syntax/paludis-output-conf.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vim/syntax/paludis-output-conf.vim b/vim/syntax/paludis-output-conf.vim index fb2322861..708792a89 100644 --- a/vim/syntax/paludis-output-conf.vim +++ b/vim/syntax/paludis-output-conf.vim @@ -20,7 +20,7 @@ syn region PaludisOutputConfComment start=/^\s*#/ end=/$/ syn region PaludisOutputConfKey start=/^\(\s*[^#]\)\@=/ end=/=\@=/ \ contains=PaludisOutputConfKnownKey -syn match PaludisOutputConfEquals /=/ skipwhite +syn match PaludisOutputConfEquals /?\?=/ skipwhite \ nextgroup=PaludisOutputConfValue syn region PaludisOutputConfValue contained start=// end=/$/ @@ -46,7 +46,9 @@ syn keyword PaludisOutputConfKnownKey contained \ format_debug format_info format_warn format_error format_log \ summary_output_message start_command end_command \ nothing_more_to_come_command succeeded_command - \ stdout_command stderr_command + \ stdout_command stderr_command extra_message_managers + \ extra_output_managers log_path always_keep_output_logs + \ quiet syn keyword PaludisOutputConfKnownValue contained \ buffer file format_messages forward_at_finish ipc tee standard command |