summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/ftplugin/abnf.vim
blob: 4741d5f055ac2b9359918eaecef26913641ab7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" Language:	abnf
" Maintainer:	A4-Tacks <wdsjxhno1001@163.com>
" Last Change:	2025-05-02
" Upstream:	https://github.com/A4-Tacks/abnf.vim

if exists('b:did_ftplugin')
  finish
endif
let b:did_ftplugin = 1

let b:undo_ftplugin = 'setlocal iskeyword< comments< commentstring<'

setlocal iskeyword=@,48-57,_,-,192-255
setlocal comments=:;;,:;
setlocal commentstring=;%s

" vim:ts=8