comparison runtime/syntax/povini.vim @ 10048:43efa4f5a8ea

commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 30 23:26:57 2016 +0200 Updated runtime files. Remove version checks for Vim older than 6.0.
author Christian Brabandt <cb@256bit.org>
date Tue, 30 Aug 2016 23:30:09 +0200
parents 0877b8d6370e
children
comparison
equal deleted inserted replaced
10047:a62862410ca1 10048:43efa4f5a8ea
3 " Maintainer: David Necas (Yeti) <yeti@physics.muni.cz> 3 " Maintainer: David Necas (Yeti) <yeti@physics.muni.cz>
4 " Last Change: 2011-04-24 4 " Last Change: 2011-04-24
5 " Required Vim Version: 6.0 5 " Required Vim Version: 6.0
6 6
7 " Setup 7 " Setup
8 if version >= 600 8 " quit when a syntax file was already loaded
9 " Quit when a syntax file was already loaded 9 if exists("b:current_syntax")
10 if exists("b:current_syntax")
11 finish
12 endif
13 else
14 " Croak when an old Vim is sourcing us.
15 echo "Sorry, but this syntax file relies on Vim 6 features. Either upgrade Vim or usea version of " . expand("<sfile>:t:r") . " syntax file appropriate for Vim " . version/100 . "." . version %100 . "."
16 finish 10 finish
17 endif 11 endif
18 12
19 syn case ignore 13 syn case ignore
20 14