annotate runtime/ftplugin/rst.vim @ 5657:6b69d8dde19e
v7.4.175
updated for version 7.4.175
Problem: When a wide library function fails, falling back to the non-wide
function may do the wrong thing.
Solution: Check the platform, when the wide function is supported don't fall
back to the non-wide function. (Ken Takata)
author |
Bram Moolenaar <bram@vim.org> |
date |
Tue, 11 Feb 2014 17:06:00 +0100 |
parents |
f4f8014d516e |
children |
1218c5353e2b |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
375
|
2 " Language: reStructuredText documentation format
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
1698
|
4 " Latest Revision: 2008-07-09
|
7
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
1698
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
389
|
14 let b:undo_ftplugin = "setl com< cms< et< fo<"
|
7
|
15
|
375
|
16 setlocal comments=fb:.. commentstring=..\ %s expandtab
|
389
|
17 setlocal formatoptions+=tcroql
|
1698
|
18
|
|
19 let &cpo = s:cpo_save
|
|
20 unlet s:cpo_save
|