comparison runtime/syntax/redif.vim @ 25402:bdda48f01a68

Update runtime files Commit: https://github.com/vim/vim/commit/53f7fccc9413c9f770694b56f40f242d383b2d5f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 28 20:10:16 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Wed, 28 Jul 2021 20:15:05 +0200
parents 43593a5d873f
children 29ec2c198c8d
comparison
equal deleted inserted replaced
25401:64c069059e9b 25402:bdda48f01a68
1 " Vim syntax file 1 " Vim syntax file
2 " Language: ReDIF 2 " Language: ReDIF
3 " Maintainer: Axel Castellane <axel.castellane@polytechnique.edu> 3 " Maintainer: Axel Castellane <axel.castellane@polytechnique.edu>
4 " Last Change: 2021 Jun 17 4 " Last Change: 2013 April 17
5 " Original Author: Axel Castellane 5 " Original Author: Axel Castellane
6 " Source: http://openlib.org/acmes/root/docu/redif_1.html 6 " Source: http://openlib.org/acmes/root/docu/redif_1.html
7 " File Extension: rdf 7 " File Extension: rdf
8 " Note: The ReDIF format is used by RePEc. 8 " Note: The ReDIF format is used by RePEc.
9 9
930 highlight redifFieldDeprecated term=undercurl cterm=undercurl gui=undercurl guisp=DarkGrey 930 highlight redifFieldDeprecated term=undercurl cterm=undercurl gui=undercurl guisp=DarkGrey
931 931
932 " Sync: The template-type (ReDIF-Paper, ReDIF-Archive, etc.) influences which 932 " Sync: The template-type (ReDIF-Paper, ReDIF-Archive, etc.) influences which
933 " fields can follow. Thus sync must search backwards for it. 933 " fields can follow. Thus sync must search backwards for it.
934 " 934 "
935 " I would like to simply ask VIM to search backward for the first occurrence of 935 " I would like to simply ask VIM to search backward for the first occurence of
936 " /^Template-Type:/, but it does not seem to be possible, so I have to start 936 " /^Template-Type:/, but it does not seem to be possible, so I have to start
937 " from the beginning of the file... This might slow down a lot for files that 937 " from the beginning of the file... This might slow down a lot for files that
938 " contain a lot of Template-Type statements. 938 " contain a lot of Template-Type statements.
939 syntax sync fromstart 939 syntax sync fromstart
940 940