diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 15:10:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-02 15:10:04 +0200 |
| commit | 7cf0119c6857846fd1f254feb237f6137f140856 (patch) | |
| tree | 1fb4d7c43a6cd86d7758bc0dc2d2aa23240b5947 /runtime/syntax/dcl.vim | |
| parent | b92a5bc3c4bdfddfc21638556ace6ef3fd90155c (diff) | |
| parent | 532ee54a42a294073e8b441f3ce5a050d16963a2 (diff) | |
| download | rneovim-7cf0119c6857846fd1f254feb237f6137f140856.tar.gz rneovim-7cf0119c6857846fd1f254feb237f6137f140856.tar.bz2 rneovim-7cf0119c6857846fd1f254feb237f6137f140856.zip | |
Merge #10666 from justinmk/vim-runtime
vim-patch: runtime updates
Diffstat (limited to 'runtime/syntax/dcl.vim')
| -rw-r--r-- | runtime/syntax/dcl.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/dcl.vim b/runtime/syntax/dcl.vim index b973db3434..c0d0ebcf95 100644 --- a/runtime/syntax/dcl.vim +++ b/runtime/syntax/dcl.vim @@ -1,8 +1,8 @@ " Vim syntax file " Language: DCL (Digital Command Language - vms) " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> -" Last Change: Aug 31, 2016 -" Version: 11 +" Last Change: Mar 26, 2019 +" Version: 12 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_DCL " quit when a syntax file was already loaded @@ -10,10 +10,10 @@ if exists("b:current_syntax") finish endif -if !has("patch-7.4.1142") - setlocal iskeyword=$,@,48-57,_ -else +if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704 syn iskeyword $,@,48-57,_ +else + setlocal iskeyword=$,@,48-57,_ endif syn case ignore |