diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:28:13 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-05-17 11:28:13 +0200 |
commit | 7dd2e1169849b7e5cae67d5056f0a379f3da67b5 (patch) | |
tree | ba85e65b887c6a77e8400627e0f7ea7c0f08b84c /syntax/modules/geoip2.vim | |
parent | 9197c69900514524a0101d88e663b452de09a98d (diff) | |
download | vim-polyglot-2.16.0.tar.gz vim-polyglot-2.16.0.zip |
Switch nginx vendor to chr4/nginx.vim, closes #205v2.16.0
Diffstat (limited to 'syntax/modules/geoip2.vim')
-rw-r--r-- | syntax/modules/geoip2.vim | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/syntax/modules/geoip2.vim b/syntax/modules/geoip2.vim deleted file mode 100644 index 6a5189a8..00000000 --- a/syntax/modules/geoip2.vim +++ /dev/null @@ -1,49 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 - -" GeoIP 2 Module <https://github.com/leev/ngx_http_geoip2_module> -" Creates variables with values from the maxmind geoip2 databases based on the client IP -syn keyword ngxDirectiveThirdParty geoip2 nextgroup=ngxThirdPartyGeoIP2Database skipwhite skipempty -syn match ngxThirdPartyGeoIP2Database /\S\+/ contained nextgroup=ngxThirdPartyGeoIP2Block skipwhite skipempty -syn region ngxThirdPartyGeoIP2Block start=/{/ end=/}/ contained contains=ngxThirdPartyGeoIP2Keyword,ngxVariable -syn keyword ngxThirdPartyGeoIP2Keyword de en es fr ja pt-BR ru zh-CN contained -syn match ngxThirdPartyGeoIP2Keyword /pt-BR|zh-CN/ contained -syn keyword ngxThirdPartyGeoIP2Keyword default source contained -" Common Keys -syn keyword ngxThirdPartyGeoIP2Keyword code confidence geoname_id names iso_code contained -" /Common Keys -syn keyword ngxThirdPartyGeoIP2Keyword city contained -syn keyword ngxThirdPartyGeoIP2Keyword continent contained -syn keyword ngxThirdPartyGeoIP2Keyword country contained -syn keyword ngxThirdPartyGeoIP2Keyword location contained -" Location Keys -syn keyword ngxThirdPartyGeoIP2Keyword accuracy_radius contained -syn keyword ngxThirdPartyGeoIP2Keyword average_income contained -syn keyword ngxThirdPartyGeoIP2Keyword latitude contained -syn keyword ngxThirdPartyGeoIP2Keyword longitude contained -syn keyword ngxThirdPartyGeoIP2Keyword metro_code contained -syn keyword ngxThirdPartyGeoIP2Keyword population_density contained -syn keyword ngxThirdPartyGeoIP2Keyword time_zone contained -syn keyword ngxThirdPartyGeoIP2Keyword postal contained -" /Location Keys -syn keyword ngxThirdPartyGeoIP2Keyword registered_country contained -syn keyword ngxThirdPartyGeoIP2Keyword represented_country contained -" Represented Country Keys -syn keyword ngxThirdPartyGeoIP2Keyword type contained -" /Represented Country Keys -syn keyword ngxThirdPartyGeoIP2Keyword subdivisions contained -syn keyword ngxThirdPartyGeoIP2Keyword traits contained -" Traits Keys -syn keyword ngxThirdPartyGeoIP2Keyword autonomous_system_number contained -syn keyword ngxThirdPartyGeoIP2Keyword autonomous_system_organization contained -syn keyword ngxThirdPartyGeoIP2Keyword domain contained -syn keyword ngxThirdPartyGeoIP2Keyword ip_address contained -syn keyword ngxThirdPartyGeoIP2Keyword is_anonymous_proxy contained -syn keyword ngxThirdPartyGeoIP2Keyword is_satellite_provider contained -syn keyword ngxThirdPartyGeoIP2Keyword isp contained -syn keyword ngxThirdPartyGeoIP2Keyword organization contained -syn keyword ngxThirdPartyGeoIP2Keyword user_type contained -" /Traits Keys -hi link ngxThirdPartyGeoIP2Keyword ngxThirdPartyKeyword - - -endif |