Mercurial > vim
annotate runtime/ftplugin/r.vim @ 16640:92ad5eb7afcb v8.1.1322
patch 8.1.1322: Cygwin makefile is not nicely indented
commit https://github.com/vim/vim/commit/6e75e0a400d85cbcc27e2190ff448196bca025a8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 11 21:24:26 2019 +0200
patch 8.1.1322: Cygwin makefile is not nicely indented
Problem: Cygwin makefile is not nicely indented.
Solution: Addjust spaces in preprocessor directives. (Ken Takata)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 11 May 2019 21:30:06 +0200 |
parents | da01d5da2cfa |
children | 5bda4653aced |
rev | line source |
---|---|
6051 | 1 " Vim filetype plugin file |
2 " Language: R | |
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:38PM |
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 " Don't load another plugin for this buffer | |
13 let b:did_ftplugin = 1 | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 setlocal iskeyword=@,48-57,_,. | |
19 setlocal formatoptions-=t | |
20 setlocal commentstring=#\ %s | |
21 setlocal comments=:#',:###,:##,:# | |
22 | |
23 if has("gui_win32") && !exists("b:browsefilter") | |
24 let b:browsefilter = "R Source Files (*.R)\t*.R\n" . | |
25 \ "Files that include R (*.Rnw *.Rd *.Rmd *.Rrst)\t*.Rnw;*.Rd;*.Rmd;*.Rrst\n" . | |
26 \ "All Files (*.*)\t*.*\n" | |
27 endif | |
28 | |
29 let b:undo_ftplugin = "setl cms< com< fo< isk< | unlet! b:browsefilter" | |
30 | |
31 let &cpo = s:cpo_save | |
32 unlet s:cpo_save |