David Mandelberg | ed7d8e5 | 2025-02-23 09:41:42 +0100 | [diff] [blame] | 1 | " Vim filetype plugin |
2 | " Language: m17n database | ||||
3 | " Maintainer: David Mandelberg <david@mandelberg.org> | ||||
4 | " Last Change: 2025 Feb 21 | ||||
5 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal comments=:;;;,:;;,:; | ||||
12 | setlocal commentstring=;\ %s | ||||
13 | setlocal iskeyword=!-~,@,^34,^(,^),^92 | ||||
14 | setlocal lisp | ||||
15 | setlocal lispwords= | ||||
16 | |||||
17 | let b:undo_ftplugin = "setlocal comments< commentstring< iskeyword< lisp< lispwords<" |