diff options
Diffstat (limited to 'ftplugin/rst.vim')
-rw-r--r-- | ftplugin/rst.vim | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ftplugin/rst.vim b/ftplugin/rst.vim deleted file mode 100644 index aef9db17..00000000 --- a/ftplugin/rst.vim +++ /dev/null @@ -1,24 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim filetype plugin file -" Language: reStructuredText documentation format -" Previous Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2008-07-09 - -if exists("b:did_ftplugin") - finish -endif -let b:did_ftplugin = 1 - -let s:cpo_save = &cpo -set cpo&vim - -let b:undo_ftplugin = "setl com< cms< et< fo<" - -setlocal comments=fb:.. commentstring=..\ %s expandtab -setlocal formatoptions+=tcroql - -let &cpo = s:cpo_save -unlet s:cpo_save - -endif |