Mercurial > vim
annotate runtime/ftplugin/rnoweb.vim @ 9287:af25a1a875db v7.4.1926
commit https://github.com/vim/vim/commit/a890f5e34887bff7616bdb4b9ee0bf98c8d2a8f0
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 12 23:03:19 2016 +0200
patch 7.4.1926
Problem: Possible crash with many history items.
Solution: Avoid the index going past the last item.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 12 Jun 2016 23:15:07 +0200 |
parents | da01d5da2cfa |
children | 5bda4653aced |
rev | line source |
---|---|
6051 | 1 " Vim filetype plugin file |
2 " Language: Rnoweb | |
3 " Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com> | |
8497
da01d5da2cfa
commit https://github.com/vim/vim/commit/77cdfd10382e01cc51f4ba1a9177032351843151
Christian Brabandt <cb@256bit.org>
parents:
6051
diff
changeset
|
4 " Homepage: https://github.com/jalvesaq/R-Vim-runtime |
da01d5da2cfa
commit https://github.com/vim/vim/commit/77cdfd10382e01cc51f4ba1a9177032351843151
Christian Brabandt <cb@256bit.org>
parents:
6051
diff
changeset
|
5 " Last Change: Tue Apr 07, 2015 04:37PM |
6051 | 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 |