comparison runtime/syntax/redif.vim @ 25056:43593a5d873f

Update runtime files Commit: https://github.com/vim/vim/commit/4d8f476176eadfc745bcb8e143460029048f858d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 27 15:18:56 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Jun 2021 15:30:05 +0200
parents 43efa4f5a8ea
children bdda48f01a68
comparison
equal deleted inserted replaced
25055:960fe9bef317 25056:43593a5d873f
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: 2013 April 17 4 " Last Change: 2021 Jun 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 occurence of 935 " I would like to simply ask VIM to search backward for the first occurrence 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