blob: 8dfdf1e80fe6f2b2983f205c9775f91473cde1a4 [file] [log] [blame]
Bram Moolenaardb6ea062014-07-10 22:01:47 +02001" Vim filetype plugin file
dkearnse93afc22024-03-03 05:27:47 +11002" Language: Rnoweb
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
6" Last Change: 2024 Feb 28 by Vim Project
Bram Moolenaardb6ea062014-07-10 22:01:47 +02007
8" Only do this when not yet done for this buffer
9if exists("b:did_ftplugin")
10 finish
11endif
12
13let s:cpo_save = &cpo
14set cpo&vim
15
16runtime! ftplugin/tex.vim
17
18" Don't load another plugin for this buffer
19let b:did_ftplugin = 1
20
21" Enables Vim-Latex-Suite, LaTeX-Box if installed
22runtime ftplugin/tex_*.vim
23
24setlocal iskeyword=@,48-57,_,.
25setlocal suffixesadd=.bib,.tex
26setlocal comments=b:%,b:#,b:##,b:###,b:#'
27
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +020028if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
dkearnse93afc22024-03-03 05:27:47 +110029 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 +010030 if has("win32")
31 let b:browsefilter .= "All Files (*.*)\t*\n"
32 else
33 let b:browsefilter .= "All Files (*)\t*\n"
34 endif
Bram Moolenaardb6ea062014-07-10 22:01:47 +020035endif
36
Bram Moolenaar71badf92023-04-22 22:40:14 +010037function SetRnwCommentStr()
Bram Moolenaardd60c362023-02-27 15:49:53 +000038 if (search("^\s*<<.*>>=", "bncW") > search("^@", "bncW"))
39 set commentstring=#\ %s
40 else
41 set commentstring=%\ %s
42 endif
43endfunction
44
45" If you do not want both 'comments' and 'commentstring' dynamically defined,
46" put in your vimrc: let g:rnw_dynamic_comments = 0
47if !exists("g:rnw_dynamic_comments") || (exists("g:rnw_dynamic_comments") && g:rnw_dynamic_comments == 1)
48 augroup RnwCStr
49 autocmd!
50 autocmd CursorMoved <buffer> call SetRnwCommentStr()
51 augroup END
52endif
53
Bram Moolenaardb6ea062014-07-10 22:01:47 +020054if exists('b:undo_ftplugin')
Bram Moolenaar71badf92023-04-22 22:40:14 +010055 let b:undo_ftplugin .= " | setl isk< sua< com< cms< | unlet! b:browsefilter"
Bram Moolenaardb6ea062014-07-10 22:01:47 +020056else
Bram Moolenaar71badf92023-04-22 22:40:14 +010057 let b:undo_ftplugin = "setl isk< sua< com< cms< | unlet! b:browsefilter"
Bram Moolenaardb6ea062014-07-10 22:01:47 +020058endif
59
60let &cpo = s:cpo_save
61unlet s:cpo_save
62
63" vim: sw=2