Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: R |
| 3 | " Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com> |
Bram Moolenaar | 77cdfd1 | 2016-03-12 12:57:59 +0100 | [diff] [blame] | 4 | " Homepage: https://github.com/jalvesaq/R-Vim-runtime |
| 5 | " Last Change: Tue Apr 07, 2015 04:38PM |
Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 6 | |
| 7 | " Only do this when not yet done for this buffer |
| 8 | if exists("b:did_ftplugin") |
| 9 | finish |
| 10 | endif |
| 11 | |
| 12 | " Don't load another plugin for this buffer |
| 13 | let b:did_ftplugin = 1 |
| 14 | |
| 15 | let s:cpo_save = &cpo |
| 16 | set cpo&vim |
| 17 | |
| 18 | setlocal iskeyword=@,48-57,_,. |
| 19 | setlocal formatoptions-=t |
| 20 | setlocal commentstring=#\ %s |
| 21 | setlocal comments=:#',:###,:##,:# |
| 22 | |
| 23 | if has("gui_win32") && !exists("b:browsefilter") |
| 24 | let b:browsefilter = "R Source Files (*.R)\t*.R\n" . |
| 25 | \ "Files that include R (*.Rnw *.Rd *.Rmd *.Rrst)\t*.Rnw;*.Rd;*.Rmd;*.Rrst\n" . |
| 26 | \ "All Files (*.*)\t*.*\n" |
| 27 | endif |
| 28 | |
| 29 | let b:undo_ftplugin = "setl cms< com< fo< isk< | unlet! b:browsefilter" |
| 30 | |
| 31 | let &cpo = s:cpo_save |
| 32 | unlet s:cpo_save |