Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
dkearns | e93afc2 | 2024-03-03 05:27:47 +1100 | [diff] [blame] | 2 | " 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 Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 7 | |
| 8 | " Only do this when not yet done for this buffer |
| 9 | if exists("b:did_ftplugin") |
| 10 | finish |
| 11 | endif |
| 12 | |
| 13 | let s:cpo_save = &cpo |
| 14 | set cpo&vim |
| 15 | |
| 16 | runtime! ftplugin/tex.vim |
| 17 | |
| 18 | " Don't load another plugin for this buffer |
| 19 | let b:did_ftplugin = 1 |
| 20 | |
| 21 | " Enables Vim-Latex-Suite, LaTeX-Box if installed |
| 22 | runtime ftplugin/tex_*.vim |
| 23 | |
| 24 | setlocal iskeyword=@,48-57,_,. |
| 25 | setlocal suffixesadd=.bib,.tex |
| 26 | setlocal comments=b:%,b:#,b:##,b:###,b:#' |
| 27 | |
Bram Moolenaar | 11e3c5b | 2021-04-21 18:09:37 +0200 | [diff] [blame] | 28 | if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
dkearns | e93afc2 | 2024-03-03 05:27:47 +1100 | [diff] [blame] | 29 | let b:browsefilter = "R Source Files (*.R, *.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n" |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 30 | if has("win32") |
| 31 | let b:browsefilter .= "All Files (*.*)\t*\n" |
| 32 | else |
| 33 | let b:browsefilter .= "All Files (*)\t*\n" |
| 34 | endif |
Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 35 | endif |
| 36 | |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 37 | function SetRnwCommentStr() |
Bram Moolenaar | dd60c36 | 2023-02-27 15:49:53 +0000 | [diff] [blame] | 38 | if (search("^\s*<<.*>>=", "bncW") > search("^@", "bncW")) |
| 39 | set commentstring=#\ %s |
| 40 | else |
| 41 | set commentstring=%\ %s |
| 42 | endif |
| 43 | endfunction |
| 44 | |
| 45 | " If you do not want both 'comments' and 'commentstring' dynamically defined, |
| 46 | " put in your vimrc: let g:rnw_dynamic_comments = 0 |
| 47 | if !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 |
| 52 | endif |
| 53 | |
Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 54 | if exists('b:undo_ftplugin') |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 55 | let b:undo_ftplugin .= " | setl isk< sua< com< cms< | unlet! b:browsefilter" |
Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 56 | else |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 57 | let b:undo_ftplugin = "setl isk< sua< com< cms< | unlet! b:browsefilter" |
Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 58 | endif |
| 59 | |
| 60 | let &cpo = s:cpo_save |
| 61 | unlet s:cpo_save |
| 62 | |
| 63 | " vim: sw=2 |