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