annotate runtime/syntax/hostsaccess.vim @ 18486:9d887cad7315

Added tag v8.1.2237 for changeset 63ee3c2b140fe1b4801389872a8e47aec19d028b
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Oct 2019 20:00:04 +0100
parents 43efa4f5a8ea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: hosts.deny, hosts.allow configuration files
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Thilo Six <T.Six@gmx.de>
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Last Change: 2011 May 01
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 " Derived From: conf.vim
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Credits: Bram Moolenaar
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 "
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 " This file is there to get at least a minimal highlighting.
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 " A later version may be improved.
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 " Quit when a (custom) syntax file was already loaded
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 if exists("b:current_syntax")
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 finish
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 endif
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 " For a starter we just use conf.vim for highlighting
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 2826
diff changeset
18 runtime! syntax/conf.vim
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 2826
diff changeset
19 unlet b:current_syntax
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 let b:current_syntax = "hostsaccess"
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 " vim: ts=8 sw=2