Mercurial > vim
annotate runtime/ftplugin/rmd.vim @ 32061:b2412874362f
Update runtime files
Commit: https://github.com/vim/vim/commit/dd60c365cd2630794be84d63c4fe287124a30b97
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 27 15:49:53 2023 +0000
Update runtime files
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 27 Feb 2023 17:00:08 +0100 |
parents | 5bda4653aced |
children | b2e8663e6dcc |
rev | line source |
---|---|
6051 | 1 " Vim filetype plugin file |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8497
diff
changeset
|
2 " Language: R Markdown file |
6051 | 3 " Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com> |
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 |
32061 | 5 " Last Change: Sun Apr 24, 2022 09:12AM |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8497
diff
changeset
|
6 " Original work by Alex Zvoleff (adjusted from R help for rmd by Michel Kuhlmann) |
6051 | 7 |
8 " Only do this when not yet done for this buffer | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 | |
14637 | 13 if exists('g:rmd_include_html') && g:rmd_include_html |
14 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8497
diff
changeset
|
15 endif |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8497
diff
changeset
|
16 |
14637 | 17 setlocal comments=fb:*,fb:-,fb:+,n:> |
18 setlocal commentstring=#\ %s | |
6051 | 19 setlocal formatoptions+=tcqln |
20 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+ | |
21 setlocal iskeyword=@,48-57,_,. | |
22 | |
23 let s:cpo_save = &cpo | |
24 set cpo&vim | |
25 | |
14637 | 26 function! FormatRmd() |
27 if search("^[ \t]*```[ ]*{r", "bncW") > search("^[ \t]*```$", "bncW") | |
28 setlocal comments=:#',:###,:##,:# | |
29 else | |
30 setlocal comments=fb:*,fb:-,fb:+,n:> | |
31 endif | |
32 return 1 | |
33 endfunction | |
34 | |
32061 | 35 function! SetRmdCommentStr() |
36 if (search("^[ \t]*```[ ]*{r", "bncW") > search("^[ \t]*```$", "bncW")) || ((search('^---$', 'Wn') || search('^\.\.\.$', 'Wn')) && search('^---$', 'bnW')) | |
37 set commentstring=#\ %s | |
38 else | |
39 set commentstring=<!--\ %s\ --> | |
40 endif | |
41 endfunction | |
42 | |
43 " If you do not want both 'comments' and 'commentstring' dynamically defined, | |
44 " put in your vimrc: let g:rmd_dynamic_comments = 0 | |
14637 | 45 if !exists("g:rmd_dynamic_comments") || (exists("g:rmd_dynamic_comments") && g:rmd_dynamic_comments == 1) |
46 setlocal formatexpr=FormatRmd() | |
32061 | 47 augroup RmdCStr |
48 autocmd! | |
49 autocmd CursorMoved <buffer> call SetRmdCommentStr() | |
50 augroup END | |
14637 | 51 endif |
52 | |
6051 | 53 " Enables pandoc if it is installed |
54 unlet! b:did_ftplugin | |
55 runtime ftplugin/pandoc.vim | |
56 | |
57 " Don't load another plugin for this buffer | |
58 let b:did_ftplugin = 1 | |
59 | |
24520 | 60 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
32061 | 61 let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n" . |
6051 | 62 \ "All Files (*.*)\t*.*\n" |
63 endif | |
64 | |
65 if exists('b:undo_ftplugin') | |
66 let b:undo_ftplugin .= " | setl cms< com< fo< flp< isk< | unlet! b:browsefilter" | |
67 else | |
68 let b:undo_ftplugin = "setl cms< com< fo< flp< isk< | unlet! b:browsefilter" | |
69 endif | |
70 | |
71 let &cpo = s:cpo_save | |
72 unlet s:cpo_save | |
73 | |
74 " vim: sw=2 |