blob: 73ebb75fea45b9ea593b51902c17592db03e4ab8 [file] [log] [blame]
Bram Moolenaardb6ea062014-07-10 22:01:47 +02001" Vim filetype plugin file
dkearnse93afc22024-03-03 05:27:47 +11002" Language: reStructuredText documentation format with R code
3" 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
John M Devina7229c82024-09-23 20:09:33 +02006" Last Change:
7" 2024 Feb 28 by Vim Project
8" 2024 Sep 23 by Vim Project: properly restore fex option
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")
dkearnse93afc22024-03-03 05:27:47 +110044 let b:browsefilter = "R Source Files (*.R, *.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
Doug Kearns93197fd2024-01-14 20:59:02 +010045 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')
John M Devina7229c82024-09-23 20:09:33 +020053 let b:undo_ftplugin .= " | setl cms< com< fo< flp< isk< fex< | unlet! b:browsefilter"
Bram Moolenaardb6ea062014-07-10 22:01:47 +020054else
John M Devina7229c82024-09-23 20:09:33 +020055 let b:undo_ftplugin = "setl cms< com< fo< flp< isk< fex< | unlet! b:browsefilter"
Bram Moolenaardb6ea062014-07-10 22:01:47 +020056endif
57
58let &cpo = s:cpo_save
59unlet s:cpo_save
60
61" vim: sw=2