A4-Tacks | c3f48e3 | 2025-05-02 15:40:33 +0200 | [diff] [blame] | 1 | " Language: abnf |
2 | " Maintainer: A4-Tacks <wdsjxhno1001@163.com> | ||||
3 | " Last Change: 2025-05-02 | ||||
4 | " Upstream: https://github.com/A4-Tacks/abnf.vim | ||||
5 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | let b:undo_ftplugin = 'setlocal iskeyword< comments< commentstring<' | ||||
12 | |||||
13 | setlocal iskeyword=@,48-57,_,-,192-255 | ||||
14 | setlocal comments=:;;,:; | ||||
15 | setlocal commentstring=;%s | ||||
16 | |||||
17 | " vim:ts=8 |