From 8492a84bfd4f9f743bd86a34875cc6b82fd0df96 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 26 Dec 2023 19:05:36 +0100 Subject: vim-patch:9042bd8b09ba runtime(r): Update R runtime files and docs (vim/vim#13757) * Update R runtime files - Fix indentation issue with ggplot(). - Setlocal autoindent in indent/r.vim. - New syntax option: rmd_include_latex. - Clear syn iskeyword to recognize _ as keyword. - Document some options. - remove the test has("patch-7.4.1142") - Update changed date of doc files https://github.com/vim/vim/commit/9042bd8b09bae0051fdf8eb5a57fa4b4420c92a0 Co-authored-by: Jakson Alves de Aquino --- runtime/syntax/r.vim | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'runtime/syntax/r.vim') diff --git a/runtime/syntax/r.vim b/runtime/syntax/r.vim index 9b3754ae23..1932d2479a 100644 --- a/runtime/syntax/r.vim +++ b/runtime/syntax/r.vim @@ -5,7 +5,7 @@ " Tom Payne " Contributor: Johannes Ranke " Homepage: https://github.com/jalvesaq/R-Vim-runtime -" Last Change: Thu Nov 17, 2022 10:13PM +" Last Change: Sun Dec 24, 2023 08:05AM " Filenames: *.R *.r *.Rhistory *.Rt " " NOTE: The highlighting of R functions might be defined in @@ -26,11 +26,7 @@ if exists("b:current_syntax") finish endif -if has("patch-7.4.1142") - syn iskeyword @,48-57,_,. -else - setlocal iskeyword=@,48-57,_,. -endif +syn iskeyword @,48-57,_,. " The variables g:r_hl_roxygen and g:r_syn_minlines were renamed on April 8, 2017. if exists("g:r_hl_roxygen") -- cgit From 9bb046d1be5aa9ba0482b2cad050b286d4b78978 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 21 Feb 2024 06:30:18 +0800 Subject: vim-patch:f9ca139e3aa1 (#27554) runtime(misc): announce adoption of various runtime files https://github.com/vim/vim/commit/f9ca139e3aa12dd03177ebba5eedcee4f0836f27 Co-authored-by: Christian Brabandt --- runtime/syntax/r.vim | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'runtime/syntax/r.vim') diff --git a/runtime/syntax/r.vim b/runtime/syntax/r.vim index 1932d2479a..fa73194332 100644 --- a/runtime/syntax/r.vim +++ b/runtime/syntax/r.vim @@ -1,12 +1,14 @@ " Vim syntax file " Language: R (GNU S) -" Maintainer: Jakson Aquino -" Former Maintainers: Vaidotas Zemlys -" Tom Payne +" Maintainer: This runtime file is looking for a new maintainer. +" Former Maintainers: Jakson Aquino +" Vaidotas Zemlys +" Tom Payne " Contributor: Johannes Ranke -" Homepage: https://github.com/jalvesaq/R-Vim-runtime -" Last Change: Sun Dec 24, 2023 08:05AM -" Filenames: *.R *.r *.Rhistory *.Rt +" Former Repository: https://github.com/jalvesaq/R-Vim-runtime +" Filenames: *.R *.r *.Rhistory *.Rt +" Last Change: 2023 Dec 24 08:05AM +" 2024 Feb 19 by Vim Project (announce adoption) " " NOTE: The highlighting of R functions might be defined in " runtime files created by a filetype plugin, if installed. -- cgit