comparison runtime/syntax/taskedit.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 d1e4abe8342c
children
comparison
equal deleted inserted replaced
10047:a62862410ca1 10048:43efa4f5a8ea
2 " Language: support for 'task 42 edit' 2 " Language: support for 'task 42 edit'
3 " Maintainer: John Florian <jflorian@doubledog.org> 3 " Maintainer: John Florian <jflorian@doubledog.org>
4 " Updated: Wed Jul 8 19:46:32 EDT 2009 4 " Updated: Wed Jul 8 19:46:32 EDT 2009
5 5
6 6
7 " For version 5.x: Clear all syntax items. 7 " quit when a syntax file was already loaded.
8 " For version 6.x: Quit when a syntax file was already loaded. 8 if exists("b:current_syntax")
9 if version < 600
10 syntax clear
11 elseif exists("b:current_syntax")
12 finish 9 finish
13 endif 10 endif
14 let s:keepcpo= &cpo 11 let s:keepcpo= &cpo
15 set cpo&vim 12 set cpo&vim
16 13