Bram Moolenaar | db6ea06 | 2014-07-10 22:01:47 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: Rnoweb |
| 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:37PM |
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 | let s:cpo_save = &cpo |
| 13 | set cpo&vim |
| 14 | |
| 15 | runtime! ftplugin/tex.vim |
| 16 | |
| 17 | " Don't load another plugin for this buffer |
| 18 | let b:did_ftplugin = 1 |
| 19 | |
| 20 | " Enables Vim-Latex-Suite, LaTeX-Box if installed |
| 21 | runtime ftplugin/tex_*.vim |
| 22 | |
| 23 | setlocal iskeyword=@,48-57,_,. |
| 24 | setlocal suffixesadd=.bib,.tex |
| 25 | setlocal comments=b:%,b:#,b:##,b:###,b:#' |
| 26 | |
| 27 | if has("gui_win32") && !exists("b:browsefilter") |
| 28 | let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst\n" . |
| 29 | \ "All Files (*.*)\t*.*\n" |
| 30 | endif |
| 31 | |
| 32 | if exists('b:undo_ftplugin') |
| 33 | let b:undo_ftplugin .= " | setl isk< sua< com< | unlet! b:browsefilter" |
| 34 | else |
| 35 | let b:undo_ftplugin = "setl isk< sua< com< | unlet! b:browsefilter" |
| 36 | endif |
| 37 | |
| 38 | let &cpo = s:cpo_save |
| 39 | unlet s:cpo_save |
| 40 | |
| 41 | " vim: sw=2 |