vim-polyglot/syntax/modules/secure-download.vim

11 lines
436 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
2017-02-02 15:16:29 -05:00
" Secure Download Module <https://www.nginx.com/resources/wiki/modules/secure_download/>
" Enables you to create links which are only valid until a certain datetime is reached
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty secure_download
syn keyword ngxDirectiveThirdParty secure_download_secret
2017-02-02 15:16:29 -05:00
syn keyword ngxDirectiveThirdParty secure_download_path_mode
2016-12-20 14:57:20 -05:00
endif