diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-28 13:11:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-28 13:11:45 +0100 |
commit | 2b8388bd0175835eb751e6c58cd0b0b69465f0d9 (patch) | |
tree | b7892d80060965dfc435285655b8f104c51c2fc0 /runtime/syntax/cobol.vim | |
parent | bac203ea2d0e3b2a5e4eae4dbe48244e592926e2 (diff) | |
download | vim-git-2b8388bd0175835eb751e6c58cd0b0b69465f0d9.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/cobol.vim')
-rw-r--r-- | runtime/syntax/cobol.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/cobol.vim b/runtime/syntax/cobol.vim index 5315e7521..51ca3d877 100644 --- a/runtime/syntax/cobol.vim +++ b/runtime/syntax/cobol.vim @@ -1,10 +1,10 @@ " Vim syntax file -" Language: COBOL -" Maintainer: Tim Pope <vimNOSPAM@tpope.info> +" Language: COBOL +" Maintainer: Tim Pope <vimNOSPAM@tpope.org> " (formerly Davyd Ondrejko <vondraco@columbus.rr.com>) " (formerly Sitaram Chamarty <sitaram@diac.com> and -" James Mitchell <james_mitchell@acm.org>) -" $Id: cobol.vim,v 1.2 2007/05/05 18:23:43 vimboss Exp $ +" James Mitchell <james_mitchell@acm.org>) +" Last Change: 2015 Feb 13 " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded @@ -145,7 +145,7 @@ syn match cobolString /'[^']*\('\|$\)/ syn match cobolIndicator "\%7c[D-]" contained if exists("cobol_legacy_code") - syn region cobolCondFlow contains=ALLBUT,cobolLine start="\<\(IF\|INVALID\|END\|EOP\)\>" skip=/\('\|"\)[^"]\{-}\("\|'\|$\)/ end="\." keepend + syn region cobolCondFlow contains=ALLBUT,cobolLine,cobolBadLine start="\<\(IF\|INVALID\|END\|EOP\)\>" skip=/\('\|"\)[^"]\{-}\("\|'\|$\)/ end="\." keepend endif " many legacy sources have junk in columns 1-6: must be before others |