view runtime/ftplugin/udevrules.vim @ 9829:73f5a9508c37

Added tag v7.4.2189 for changeset e84e457866914d76e84a3096ff417d9d0ed33d23
author Christian Brabandt <cb@256bit.org>
date Tue, 09 Aug 2016 22:15:07 +0200
parents f4f8014d516e
children 1218c5353e2b
line wrap: on
line source

" Vim filetype plugin file
" Language:         udev(8) rules 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< fo<"

setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save