annotate runtime/syntax/hostsaccess.vim @ 10670:bce3eccea39a v8.0.0225

patch 8.0.0225: put in Visual block mode terminates early commit https://github.com/vim/vim/commit/9957a10d0f0c34d8083af6ed66e198e4796038e0 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 23 21:53:53 2017 +0100 patch 8.0.0225: put in Visual block mode terminates early Problem: When a block is visually selected and put is used on the end of the selection only one line is changed. Solution: Check for the end properly. (Christian Brabandt, neovim issue 5781)
author Christian Brabandt <cb@256bit.org>
date Mon, 23 Jan 2017 22: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