diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-26 21:25:27 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:34 -0400 |
commit | 4819737853fc3676b976be93bd0332a3e44ab837 (patch) | |
tree | 92b0217b2310433060a61ff6226ca2d225f49c7b /runtime/syntax/fortran.vim | |
parent | e8178093dc41204d9f88e81095b12c5867b0fe54 (diff) | |
download | rneovim-4819737853fc3676b976be93bd0332a3e44ab837.tar.gz rneovim-4819737853fc3676b976be93bd0332a3e44ab837.tar.bz2 rneovim-4819737853fc3676b976be93bd0332a3e44ab837.zip |
vim-patch:560979ed4f02
Update runtime files.
https://github.com/vim/vim/commit/560979ed4f0216f902a2c247e937f00a27dcb198
Omit vim9.
Diffstat (limited to 'runtime/syntax/fortran.vim')
-rw-r--r-- | runtime/syntax/fortran.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/fortran.vim b/runtime/syntax/fortran.vim index 5623823670..019a0bf2ac 100644 --- a/runtime/syntax/fortran.vim +++ b/runtime/syntax/fortran.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Fortran 2008 (and older: Fortran 2003, 95, 90, and 77) -" Version: 101 -" Last Change: 2019 Nov. 26 +" Version: 102 +" Last Change: 2019 Dec. 14 " Maintainer: Ajit J. Thakkar <ajit@unb.ca>; <http://www2.unb.ca/~ajit/> " Usage: For instructions, do :help fortran-syntax from Vim " Credits: @@ -185,8 +185,8 @@ syn match fortranLabelNumber display "^ \d\s"ms=s+4,me=e-1 if exists("fortran_more_precise") " Numbers as targets syn match fortranTarget display "\(\<if\s*(.\+)\s*\)\@<=\(\d\+\s*,\s*\)\{2}\d\+\>" - syn match fortranTarget display "\(\<do\s\+\)\@<11=\d\+\>" - syn match fortranTarget display "\(\<go\s*to\s*(\=\)\@<11=\(\d\+\s*,\s*\)*\d\+\>" + syn match fortranTarget display "\(\<do\s\+\)\@11<=\d\+\>" + syn match fortranTarget display "\(\<go\s*to\s*(\=\)\@11<=\(\d\+\s*,\s*\)*\d\+\>" endif syn keyword fortranTypeR external @@ -274,7 +274,7 @@ syn match fortranType "\<elemental\>" syn match fortranType "\<pure\>" syn match fortranType "\<impure\>" if exists("fortran_more_precise") - syn match fortranConstructName "\(\<end\s*forall\s\+\)\@<15=\a\w*\>" + syn match fortranConstructName "\(\<end\s*forall\s\+\)\@15<=\a\w*\>" endif if b:fortran_dialect == "f08" |