blob: f9e5f4ba3c7cb74f8a5edef6ed8e54959e2f2595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
" Vim filetype plugin file
" Language: bind zone file
" Maintainer: This runtime file is looking for a new maintainer.
" Last Change: 2024 Jul 06
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin=1
setlocal comments=b:;
setlocal commentstring=;\ %s
setlocal formatoptions-=t
setlocal formatoptions+=crq
let b:undo_ftplugin = "setlocal com< cms< fo<"
|