xref: /vim-8.2.3635/runtime/ftplugin/j.vim (revision baca7f70)
1" Vim filetype plugin
2" Language:	J
3" Maintainer:	David Bürgin <[email protected]>
4" Last Change:	2013-09-21
5
6if exists("b:did_ftplugin")
7  finish
8endif
9let b:did_ftplugin = 1
10
11setlocal iskeyword=48-57,65-90,_,97-122
12setlocal comments=:NB.
13setlocal commentstring=NB.\ %s
14setlocal formatoptions-=t formatoptions+=croql
15setlocal shiftwidth=2 softtabstop=2 expandtab
16
17let b:undo_ftplugin = "setl et< sts< sw< fo< cms< com< isk<"
18