view runtime/ftplugin/sysctl.vim @ 17035:a4b23aa54dca

Added tag v8.1.1517 for changeset d4a7c690c8e6b2185d545ab134017b239b70ecce
author Bram Moolenaar <Bram@vim.org>
date Mon, 10 Jun 2019 21:30:06 +0200
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             sysctl.conf(5) configuration file
" 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< fo<"

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

let &cpo = s:cpo_save
unlet s:cpo_save