neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

rnoweb.vim (1792B)


      1 " Vim filetype plugin file
      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
      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 
     28 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
     29  let b:browsefilter = "R Source Files (*.R, *.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
     30  if has("win32")
     31    let b:browsefilter .= "All Files (*.*)\t*\n"
     32  else
     33    let b:browsefilter .= "All Files (*)\t*\n"
     34  endif
     35 endif
     36 
     37 function SetRnwCommentStr()
     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 
     54 if exists('b:undo_ftplugin')
     55  let b:undo_ftplugin .= " | setl isk< sua< com< cms< | unlet! b:browsefilter"
     56 else
     57  let b:undo_ftplugin = "setl isk< sua< com< cms< | unlet! b:browsefilter"
     58 endif
     59 
     60 let &cpo = s:cpo_save
     61 unlet s:cpo_save
     62 
     63 " vim: sw=2