comparison runtime/ftplugin/rrst.vim @ 14637:0ecb909e3249

Update runtime files. commit https://github.com/vim/vim/commit/fc65cabb15d0236bce001ad78e12a40511caf941 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 28 22:58:02 2018 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 28 Aug 2018 23:00:08 +0200
parents da01d5da2cfa
children 5bda4653aced
comparison
equal deleted inserted replaced
14636:91eef21ff090 14637:0ecb909e3249
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: reStructuredText documentation format with R code 2 " Language: reStructuredText documentation format with R code
3 " Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com> 3 " Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com>
4 " Homepage: https://github.com/jalvesaq/R-Vim-runtime 4 " Homepage: https://github.com/jalvesaq/R-Vim-runtime
5 " Last Change: Tue Apr 07, 2015 04:38PM 5 " Last Change: Wed Nov 01, 2017 10:47PM
6 " Original work by Alex Zvoleff 6 " Original work by Alex Zvoleff
7 7
8 " Only do this when not yet done for this buffer 8 " Only do this when not yet done for this buffer
9 if exists("b:did_ftplugin") 9 if exists("b:did_ftplugin")
10 finish 10 finish
14 let b:did_ftplugin = 1 14 let b:did_ftplugin = 1
15 15
16 let s:cpo_save = &cpo 16 let s:cpo_save = &cpo
17 set cpo&vim 17 set cpo&vim
18 18
19 setlocal comments=fb:*,fb:-,fb:+,n:> commentstring=>\ %s 19 setlocal comments=fb:*,fb:-,fb:+,n:>
20 setlocal commentstring=#\ %s
20 setlocal formatoptions+=tcqln 21 setlocal formatoptions+=tcqln
21 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+ 22 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+
22 setlocal iskeyword=@,48-57,_,. 23 setlocal iskeyword=@,48-57,_,.
24
25 function! FormatRrst()
26 if search('^\.\. {r', "bncW") > search('^\.\. \.\.$', "bncW")
27 setlocal comments=:#',:###,:##,:#
28 else
29 setlocal comments=fb:*,fb:-,fb:+,n:>
30 endif
31 return 1
32 endfunction
33
34 " If you do not want 'comments' dynamically defined, put in your vimrc:
35 " let g:rrst_dynamic_comments = 0
36 if !exists("g:rrst_dynamic_comments") || (exists("g:rrst_dynamic_comments") && g:rrst_dynamic_comments == 1)
37 setlocal formatexpr=FormatRrst()
38 endif
23 39
24 if has("gui_win32") && !exists("b:browsefilter") 40 if has("gui_win32") && !exists("b:browsefilter")
25 let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst\n" . 41 let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst\n" .
26 \ "All Files (*.*)\t*.*\n" 42 \ "All Files (*.*)\t*.*\n"
27 endif 43 endif