view runtime/ftplugin/a2ps.vim @ 10436:cb856404d060 v8.0.0112

commit https://github.com/vim/vim/commit/eca626fcdb73d480660c78b9f84cc043fa561922 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 1 18:47:38 2016 +0100 patch 8.0.0112 Problem: Tests 92 and 93 are old style. Solution: Make test92 and test93 new style. (Hirohito Higashi, closes https://github.com/vim/vim/issues/1289)
author Christian Brabandt <cb@256bit.org>
date Thu, 01 Dec 2016 19:00:05 +0100
parents f4f8014d516e
children 1218c5353e2b
line wrap: on
line source

" Vim filetype plugin file
" Language:         a2ps(1) configuration file
" 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< inc< fo<"

setlocal comments=:# commentstring=#\ %s include=^\\s*Include:
setlocal formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save