comparison runtime/syntax/datascript.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 349e6c01f35d
children
comparison
equal deleted inserted replaced
10047:a62862410ca1 10048:43efa4f5a8ea
6 " DataScript is a formal language for modelling binary datatypes, 6 " DataScript is a formal language for modelling binary datatypes,
7 " bitstreams or file formats. For more information, see: 7 " bitstreams or file formats. For more information, see:
8 " 8 "
9 " http://dstools.sourceforge.net/DataScriptLanguageOverview.html 9 " http://dstools.sourceforge.net/DataScriptLanguageOverview.html
10 10
11 if version < 600 11 " quit when a syntax file was already loaded
12 syntax clear 12 if exists("b:current_syntax")
13 elseif exists("b:current_syntax")
14 finish 13 finish
15 endif 14 endif
16 let s:keepcpo= &cpo 15 let s:keepcpo= &cpo
17 set cpo&vim 16 set cpo&vim
18 17