diff options
Diffstat (limited to 'syntax/modules/upload-progress.vim')
-rw-r--r-- | syntax/modules/upload-progress.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/syntax/modules/upload-progress.vim b/syntax/modules/upload-progress.vim index 218b6d76..a66c4633 100644 --- a/syntax/modules/upload-progress.vim +++ b/syntax/modules/upload-progress.vim @@ -1,13 +1,15 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 " Upload Progress Module <https://www.nginx.com/resources/wiki/modules/upload_progress/> -" Tracks and reports upload progress. -syn keyword ngxDirectiveThirdParty report_uploads -syn keyword ngxDirectiveThirdParty track_uploads +" An upload progress system, that monitors RFC1867 POST upload as they are transmitted to upstream servers syn keyword ngxDirectiveThirdParty upload_progress +syn keyword ngxDirectiveThirdParty track_uploads +syn keyword ngxDirectiveThirdParty report_uploads syn keyword ngxDirectiveThirdParty upload_progress_content_type syn keyword ngxDirectiveThirdParty upload_progress_header +syn keyword ngxDirectiveThirdParty upload_progress_jsonp_parameter syn keyword ngxDirectiveThirdParty upload_progress_json_output +syn keyword ngxDirectiveThirdParty upload_progress_jsonp_output syn keyword ngxDirectiveThirdParty upload_progress_template |