diff options
author | James McCoy <jamessan@jamessan.com> | 2017-04-19 23:16:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 23:16:36 -0400 |
commit | 2fb46adc5e19a0f85deed3983a3b956c31504adf (patch) | |
tree | a971e87f03a42c0f8f33c7bdf481f5b3605a8795 /runtime/syntax/r.vim | |
parent | 462c53eb3ea256bb85eb3916400d984347f0626f (diff) | |
parent | b25fa94eb5234e3c5ae1f7b3c0888aac644ae923 (diff) | |
download | rneovim-2fb46adc5e19a0f85deed3983a3b956c31504adf.tar.gz rneovim-2fb46adc5e19a0f85deed3983a3b956c31504adf.tar.bz2 rneovim-2fb46adc5e19a0f85deed3983a3b956c31504adf.zip |
Merge pull request #6531 from justinmk/vim-dc1f1645cb49
vim-patch: runtime updates
Diffstat (limited to 'runtime/syntax/r.vim')
-rw-r--r-- | runtime/syntax/r.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/syntax/r.vim b/runtime/syntax/r.vim index d96bf96acb..30a5b23f84 100644 --- a/runtime/syntax/r.vim +++ b/runtime/syntax/r.vim @@ -5,7 +5,7 @@ " Tom Payne <tom@tompayne.org> " Contributor: Johannes Ranke <jranke@uni-bremen.de> " Homepage: https://github.com/jalvesaq/R-Vim-runtime -" Last Change: Thu Mar 10, 2016 12:26PM +" Last Change: Thu Aug 25, 2016 08:52PM " Filenames: *.R *.r *.Rhistory *.Rt " " NOTE: The highlighting of R functions is defined in @@ -26,7 +26,7 @@ if exists("b:current_syntax") finish endif -setlocal iskeyword=@,48-57,_,. +syn iskeyword @,48-57,_,. if exists("g:r_syntax_folding") && g:r_syntax_folding setlocal foldmethod=syntax @@ -174,8 +174,6 @@ endif if g:R_hi_fun " Nvim-R: runtime R/functions.vim - " Vim-R-plugin: - runtime r-plugin/functions.vim endif syn match rDollar display contained "\$" |