10 lines
340 B
VimL
10 lines
340 B
VimL
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
|
||
|
|
||
|
" Lower/UpperCase Module <https://github.com/replay/ngx_http_lower_upper_case>
|
||
|
" This module simply uppercases or lowercases a string and saves it into a new variable.
|
||
|
syn keyword ngxDirectiveThirdParty lower
|
||
|
syn keyword ngxDirectiveThirdParty upper
|
||
|
|
||
|
|
||
|
endif
|