blob: 04a9737e42c6278b8e68fc30b196c2200d32143c [file] [log] [blame]
Bram Moolenaardb6ea062014-07-10 22:01:47 +02001" Vim filetype plugin file
2" Language: reStructuredText documentation format with R code
Christian Brabandtf9ca1392024-02-19 20:37:11 +01003" Maintainer: This runtime file is looking for a new maintainer.
4" Former Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com>
5" Former Repository: https://github.com/jalvesaq/R-Vim-runtime
6" Last Change: 2023 Feb 27 07:16PM
Doug Kearns93197fd2024-01-14 20:59:02 +01007" 2024 Jan 14 by Vim Project (browsefilter)
Christian Brabandtf9ca1392024-02-19 20:37:11 +01008" 2024 Feb 19 by Vim Project (announce adoption)
Bram Moolenaardb6ea062014-07-10 22:01:47 +02009" Original work by Alex Zvoleff
10
11" Only do this when not yet done for this buffer
12if exists("b:did_ftplugin")
13 finish
14endif
15
16" Don't load another plugin for this buffer
17let b:did_ftplugin = 1
18
19let s:cpo_save = &cpo
20set cpo&vim
21
Bram Moolenaarfc65cab2018-08-28 22:58:02 +020022setlocal comments=fb:*,fb:-,fb:+,n:>
23setlocal commentstring=#\ %s
Bram Moolenaardb6ea062014-07-10 22:01:47 +020024setlocal formatoptions+=tcqln
25setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+
26setlocal iskeyword=@,48-57,_,.
27
Bram Moolenaar71badf92023-04-22 22:40:14 +010028function FormatRrst()
Bram Moolenaarfc65cab2018-08-28 22:58:02 +020029 if search('^\.\. {r', "bncW") > search('^\.\. \.\.$', "bncW")
30 setlocal comments=:#',:###,:##,:#
31 else
32 setlocal comments=fb:*,fb:-,fb:+,n:>
33 endif
34 return 1
35endfunction
36
37" If you do not want 'comments' dynamically defined, put in your vimrc:
38" let g:rrst_dynamic_comments = 0
39if !exists("g:rrst_dynamic_comments") || (exists("g:rrst_dynamic_comments") && g:rrst_dynamic_comments == 1)
40 setlocal formatexpr=FormatRrst()
41endif
42
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +020043if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Doug Kearns93197fd2024-01-14 20:59:02 +010044 let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
45 if has("win32")
46 let b:browsefilter .= "All Files (*.*)\t*\n"
47 else
48 let b:browsefilter .= "All Files (*)\t*\n"
49 endif
Bram Moolenaardb6ea062014-07-10 22:01:47 +020050endif
51
52if exists('b:undo_ftplugin')
53 let b:undo_ftplugin .= " | setl cms< com< fo< flp< isk< | unlet! b:browsefilter"
54else
55 let b:undo_ftplugin = "setl cms< com< fo< flp< isk< | unlet! b:browsefilter"
56endif
57
58let &cpo = s:cpo_save
59unlet s:cpo_save
60
61" vim: sw=2