view runtime/ftplugin/hostsaccess.vim @ 10105:5aca505bbcfe

Added tag v7.4.2323 for changeset b2dbe79639a2c8873037e676e74f3def9be88ccc
author Christian Brabandt <cb@256bit.org>
date Sun, 04 Sep 2016 15:15:07 +0200
parents f4f8014d516e
children 1218c5353e2b
line wrap: on
line source

" Vim filetype plugin file
" Language:         hosts_access(5) control 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