neovim

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

rrst.vim (1858B)


      1 " Vim filetype plugin file
      2 " Language:		reStructuredText documentation format with R code
      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:
      7 "  2024 Feb 28 by Vim Project
      8 "  2024 Sep 23 by Vim Project: properly restore fex option
      9 " Original work by Alex Zvoleff
     10 
     11 " Only do this when not yet done for this buffer
     12 if exists("b:did_ftplugin")
     13  finish
     14 endif
     15 
     16 " Don't load another plugin for this buffer
     17 let b:did_ftplugin = 1
     18 
     19 let s:cpo_save = &cpo
     20 set cpo&vim
     21 
     22 setlocal comments=fb:*,fb:-,fb:+,n:>
     23 setlocal commentstring=#\ %s
     24 setlocal formatoptions+=tcqln
     25 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+
     26 setlocal iskeyword=@,48-57,_,.
     27 
     28 function FormatRrst()
     29  if search('^\.\. {r', "bncW") > search('^\.\. \.\.$', "bncW")
     30    setlocal comments=:#',:###,:##,:#
     31  else
     32    setlocal comments=fb:*,fb:-,fb:+,n:>
     33  endif
     34  return 1
     35 endfunction
     36 
     37 " If you do not want 'comments' dynamically defined, put in your vimrc:
     38 " let g:rrst_dynamic_comments = 0
     39 if !exists("g:rrst_dynamic_comments") || (exists("g:rrst_dynamic_comments") && g:rrst_dynamic_comments == 1)
     40  setlocal formatexpr=FormatRrst()
     41 endif
     42 
     43 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
     44  let b:browsefilter = "R Source Files (*.R, *.Rnw, *.Rd, *.Rmd, *.Rrst, *.qmd)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst;*.qmd\n"
     45  if has("win32")
     46    let b:browsefilter .= "All Files (*.*)\t*\n"
     47  else
     48    let b:browsefilter .= "All Files (*)\t*\n"
     49  endif
     50 endif
     51 
     52 if exists('b:undo_ftplugin')
     53  let b:undo_ftplugin .= " | setl cms< com< fo< flp< isk< fex< | unlet! b:browsefilter"
     54 else
     55  let b:undo_ftplugin = "setl cms< com< fo< flp< isk< fex< | unlet! b:browsefilter"
     56 endif
     57 
     58 let &cpo = s:cpo_save
     59 unlet s:cpo_save
     60 
     61 " vim: sw=2