diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-12 12:57:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-12 12:57:59 +0100 |
commit | 77cdfd10382e01cc51f4ba1a9177032351843151 (patch) | |
tree | 9d9e20ee5c80d402d8f853ca0d88b6db6a53e5ed /runtime/syntax/rmd.vim | |
parent | 4fc563b397949ce23190045112fa08c0776a56e6 (diff) | |
download | vim-77cdfd10382e01cc51f4ba1a9177032351843151.zip |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/rmd.vim')
-rw-r--r-- | runtime/syntax/rmd.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/rmd.vim b/runtime/syntax/rmd.vim index 6f1b84745..4cde7441d 100644 --- a/runtime/syntax/rmd.vim +++ b/runtime/syntax/rmd.vim @@ -1,15 +1,13 @@ " markdown Text with R statements " Language: markdown with R code chunks -" Last Change: Wed Jul 09, 2014 10:29PM +" Homepage: https://github.com/jalvesaq/R-Vim-runtime +" Last Change: Sat Feb 06, 2016 06:45AM " " CONFIGURATION: " To highlight chunk headers as R code, put in your vimrc: " let rmd_syn_hl_chunk = 1 -" for portability -if version < 600 - syntax clear -elseif exists("b:current_syntax") +if exists("b:current_syntax") finish endif @@ -58,6 +56,8 @@ if rmdIsPandoc == 0 if exists("b:current_syntax") unlet b:current_syntax endif + " Extend cluster + syn cluster texMathZoneGroup add=rmdrInline " Inline syntax match rmdLaTeXInlDelim "\$" syntax match rmdLaTeXInlDelim "\\\$" |