blob: 6b07744c4a068e230374c2423efbfdc10c6e6293 [file] [log] [blame]
Bram Moolenaardb6ea062014-07-10 22:01:47 +02001" Vim filetype plugin file
dkearnse93afc22024-03-03 05:27:47 +11002" Language: R
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
13" Don't load another plugin for this buffer
14let b:did_ftplugin = 1
15
16let s:cpo_save = &cpo
17set cpo&vim
18
19setlocal iskeyword=@,48-57,_,.
20setlocal formatoptions-=t
21setlocal commentstring=#\ %s
22setlocal comments=:#',:###,:##,:#
23
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +020024if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Bram Moolenaardb6ea062014-07-10 22:01:47 +020025 let b:browsefilter = "R Source Files (*.R)\t*.R\n" .
dkearnse93afc22024-03-03 05:27:47 +110026 \ "Files that include R (*.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
Doug Kearns93197fd2024-01-14 20:59:02 +010027 if has("win32")
28 let b:browsefilter .= "All Files (*.*)\t*\n"
29 else
30 let b:browsefilter .= "All Files (*)\t*\n"
31 endif
Bram Moolenaardb6ea062014-07-10 22:01:47 +020032endif
33
34let b:undo_ftplugin = "setl cms< com< fo< isk< | unlet! b:browsefilter"
35
36let &cpo = s:cpo_save
37unlet s:cpo_save