neovim

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

rhelp.vim (952B)


      1 " Vim filetype plugin file
      2 " Language:		R help file
      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 " Don't load another plugin for this buffer
     14 let b:did_ftplugin = 1
     15 
     16 let s:cpo_save = &cpo
     17 set cpo&vim
     18 
     19 setlocal iskeyword=@,48-57,_,.
     20 
     21 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
     22  let b:browsefilter = "R Source Files (*.R, *.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
     23  if has("win32")
     24    let b:browsefilter .= "All Files (*.*)\t*\n"
     25  else
     26    let b:browsefilter .= "All Files (*)\t*\n"
     27  endif
     28 endif
     29 
     30 let b:undo_ftplugin = "setl isk< | unlet! b:browsefilter"
     31 
     32 let &cpo = s:cpo_save
     33 unlet s:cpo_save
     34 
     35 " vim: sw=2