Mercurial > vim
annotate runtime/ftplugin/rnoweb.vim @ 27557:ce72087b601f v8.2.4305
patch 8.2.4305: tex filetype detection fails
Commit: https://github.com/vim/vim/commit/e5b7897585eccec84431d8b23df5cde2e283828c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 5 19:50:34 2022 +0000
patch 8.2.4305: tex filetype detection fails
Problem: Tex filetype detection fails.
Solution: Check value to be positive. (closes https://github.com/vim/vim/issues/9704)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 05 Feb 2022 21:00:03 +0100 |
parents | 5bda4653aced |
children | b2412874362f |
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 |
24520 | 5 " Last Change: Sat Aug 15, 2020 12:02PM |
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 | |
24520 | 27 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
6051 | 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 |