Bram Moolenaar | baca7f7 | 2013-09-22 14:42:24 +0200 | [diff] [blame] | 1 | " Vim filetype plugin |
2 | " Language: J | ||||
3 | " Maintainer: David Bürgin <676c7473@gmail.com> | ||||
4 | " Last Change: 2013-09-21 | ||||
5 | |||||
6 | if exists("b:did_ftplugin") | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal iskeyword=48-57,65-90,_,97-122 | ||||
12 | setlocal comments=:NB. | ||||
13 | setlocal commentstring=NB.\ %s | ||||
14 | setlocal formatoptions-=t formatoptions+=croql | ||||
15 | setlocal shiftwidth=2 softtabstop=2 expandtab | ||||
16 | |||||
17 | let b:undo_ftplugin = "setl et< sts< sw< fo< cms< com< isk<" |