annotate runtime/syntax/hostsaccess.vim @ 7293:979f8a595326 v7.4.952

commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 3 16:54:53 2015 +0100 patch 7.4.952 Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'.
author Christian Brabandt <cb@256bit.org>
date Thu, 03 Dec 2015 17:00:05 +0100
parents 3c7da93eb7f9
children 43efa4f5a8ea
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
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 if version < 600
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 so <sfile>:p:h/conf.vim
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 else
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 runtime! syntax/conf.vim
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 unlet b:current_syntax
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 endif
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26 let b:current_syntax = "hostsaccess"
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 " vim: ts=8 sw=2