Mercurial > vim
annotate runtime/ftplugin/r.vim @ 14685:17a7d9e71ebb v8.1.0355
patch 8.1.0355: incorrect adjusting the popup menu for the preview window
commit https://github.com/vim/vim/commit/a750ac2288eae4f751185597885552e9b6e4d27c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 9 15:27:59 2018 +0200
patch 8.1.0355: incorrect adjusting the popup menu for the preview window
Problem: Incorrect adjusting the popup menu for the preview window.
Solution: Compute position and height properl. (Ronan Pigott) Also show at
least ten items. (closes #3414)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 09 Sep 2018 15: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 |