vim-polyglot/syntax/modules/upload-progress.vim

17 lines
812 B
VimL
Raw Normal View History

2016-12-20 14:57:20 -05:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
" Upload Progress Module <https://www.nginx.com/resources/wiki/modules/upload_progress/>
2017-02-02 15:16:29 -05:00
" An upload progress system, that monitors RFC1867 POST upload as they are transmitted to upstream servers
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty upload_progress
2017-02-02 15:16:29 -05:00
syn keyword ngxDirectiveThirdParty track_uploads
syn keyword ngxDirectiveThirdParty report_uploads
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty upload_progress_content_type
syn keyword ngxDirectiveThirdParty upload_progress_header
2017-02-02 15:16:29 -05:00
syn keyword ngxDirectiveThirdParty upload_progress_jsonp_parameter
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty upload_progress_json_output
2017-02-02 15:16:29 -05:00
syn keyword ngxDirectiveThirdParty upload_progress_jsonp_output
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty upload_progress_template
endif