vim-polyglot/syntax/modules/cache-purge.vim

12 lines
449 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
" Cache Purge Module <https://github.com/FRiCKLE/ngx_cache_purge>
2017-02-02 15:16:29 -05:00
" Adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches.
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty fastcgi_cache_purge
syn keyword ngxDirectiveThirdParty proxy_cache_purge
2017-02-02 15:16:29 -05:00
" syn keyword ngxDirectiveThirdParty scgi_cache_purge
" syn keyword ngxDirectiveThirdParty uwsgi_cache_purge
2016-12-20 14:57:20 -05:00
endif