comparison runtime/syntax/euphoria3.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 c2098c3095e7
children
comparison
equal deleted inserted replaced
10047:a62862410ca1 10048:43efa4f5a8ea
3 " Maintainer: Shian Lee 3 " Maintainer: Shian Lee
4 " Last Change: 2014 Feb 24 (for Vim 7.4) 4 " Last Change: 2014 Feb 24 (for Vim 7.4)
5 " Remark: Euphoria has two syntax files, euphoria3.vim and euphoria4.vim; 5 " Remark: Euphoria has two syntax files, euphoria3.vim and euphoria4.vim;
6 " For details see :help ft-euphoria-syntax 6 " For details see :help ft-euphoria-syntax
7 7
8 " Quit if a (custom) syntax file was already loaded (compatible with Vim 5.8): 8 " quit when a syntax file was already loaded
9 if version < 600 9 if exists("b:current_syntax")
10 syntax clear
11 elseif exists("b:current_syntax")
12 finish 10 finish
13 endif 11 endif
14 12
15 " Reset compatible-options to Vim default value, just in case: 13 " Reset compatible-options to Vim default value, just in case:
16 let s:save_cpo = &cpo 14 let s:save_cpo = &cpo