Mercurial > vim
annotate runtime/ftplugin/rrst.vim @ 17411:9c4ddc78df74 v8.1.1704
patch 8.1.1704: C-R C-W does not work after C-G when using 'incsearch'
commit https://github.com/vim/vim/commit/69a5b867940d25f68a782de5c1165d65b51fcafa
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jul 16 21:38:51 2019 +0200
patch 8.1.1704: C-R C-W does not work after C-G when using 'incsearch'
Problem: C-R C-W does not work after C-G when using 'incsearch'.
Solution: Put cursor at end of the match. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/4664)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 16 Jul 2019 21:45:05 +0200 |
parents | 0ecb909e3249 |
children | 5bda4653aced |
rev | line source |
---|---|
6051 | 1 " Vim filetype plugin file |
2 " Language: reStructuredText documentation format with R code | |
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 |
14637 | 5 " Last Change: Wed Nov 01, 2017 10:47PM |
6051 | 6 " Original work by Alex Zvoleff |
7 | |
8 " Only do this when not yet done for this buffer | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 | |
13 " Don't load another plugin for this buffer | |
14 let b:did_ftplugin = 1 | |
15 | |
16 let s:cpo_save = &cpo | |
17 set cpo&vim | |
18 | |
14637 | 19 setlocal comments=fb:*,fb:-,fb:+,n:> |
20 setlocal commentstring=#\ %s | |
6051 | 21 setlocal formatoptions+=tcqln |
22 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^\\s*[-*+]\\s\\+ | |
23 setlocal iskeyword=@,48-57,_,. | |
24 | |
14637 | 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 | |
39 | |
6051 | 40 if has("gui_win32") && !exists("b:browsefilter") |
41 let b:browsefilter = "R Source Files (*.R *.Rnw *.Rd *.Rmd *.Rrst)\t*.R;*.Rnw;*.Rd;*.Rmd;*.Rrst\n" . | |
42 \ "All Files (*.*)\t*.*\n" | |
43 endif | |
44 | |
45 if exists('b:undo_ftplugin') | |
46 let b:undo_ftplugin .= " | setl cms< com< fo< flp< isk< | unlet! b:browsefilter" | |
47 else | |
48 let b:undo_ftplugin = "setl cms< com< fo< flp< isk< | unlet! b:browsefilter" | |
49 endif | |
50 | |
51 let &cpo = s:cpo_save | |
52 unlet s:cpo_save | |
53 | |
54 " vim: sw=2 |