Mercurial > vim
annotate runtime/syntax/rrst.vim @ 20442:18447aca68fc
Added tag v8.2.0775 for changeset 86dde5c4b37568f7d107f3c4477d0220f38935cf
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 May 2020 14:45:05 +0200 |
parents | 0ecb909e3249 |
children |
rev | line source |
---|---|
6051 | 1 " reStructured Text with R statements |
2 " Language: reST with R code chunks | |
3 " Maintainer: Alex Zvoleff, azvoleff@mail.sdsu.edu | |
8497
da01d5da2cfa
commit https://github.com/vim/vim/commit/77cdfd10382e01cc51f4ba1a9177032351843151
Christian Brabandt <cb@256bit.org>
parents:
6051
diff
changeset
|
4 " Homepage: https://github.com/jalvesaq/R-Vim-runtime |
14637 | 5 " Last Change: Thu Apr 05, 2018 11:06PM |
6051 | 6 " |
7 " CONFIGURATION: | |
8 " To highlight chunk headers as R code, put in your vimrc: | |
9 " let rrst_syn_hl_chunk = 1 | |
10 | |
8497
da01d5da2cfa
commit https://github.com/vim/vim/commit/77cdfd10382e01cc51f4ba1a9177032351843151
Christian Brabandt <cb@256bit.org>
parents:
6051
diff
changeset
|
11 if exists("b:current_syntax") |
6051 | 12 finish |
13 endif | |
14 | |
15 " load all of the rst info | |
16 runtime syntax/rst.vim | |
14637 | 17 unlet! b:current_syntax |
6051 | 18 |
19 " load all of the r syntax highlighting rules into @R | |
20 syntax include @R syntax/r.vim | |
21 | |
22 " highlight R chunks | |
23 if exists("g:rrst_syn_hl_chunk") | |
24 " highlight R code inside chunk header | |
25 syntax match rrstChunkDelim "^\.\. {r" contained | |
26 syntax match rrstChunkDelim "}$" contained | |
27 else | |
28 syntax match rrstChunkDelim "^\.\. {r .*}$" contained | |
29 endif | |
30 syntax match rrstChunkDelim "^\.\. \.\.$" contained | |
31 syntax region rrstChunk start="^\.\. {r.*}$" end="^\.\. \.\.$" contains=@R,rrstChunkDelim keepend transparent fold | |
32 | |
33 " also highlight in-line R code | |
34 syntax match rrstInlineDelim "`" contained | |
35 syntax match rrstInlineDelim ":r:" contained | |
36 syntax region rrstInline start=":r: *`" skip=/\\\\\|\\`/ end="`" contains=@R,rrstInlineDelim keepend | |
37 | |
38 hi def link rrstChunkDelim Special | |
39 hi def link rrstInlineDelim Special | |
40 | |
41 let b:current_syntax = "rrst" | |
42 | |
43 " vim: ts=8 sw=2 |