xref: /vim-8.2.3635/runtime/ftplugin/j.vim (revision d5d015d4)
1" Vim filetype plugin
2" Language:	J
3" Maintainer:	David Bürgin <[email protected]>
4" Last Change:	2013-10-06
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
15setlocal shiftwidth=2 softtabstop=2 expandtab
16setlocal matchpairs=(:)
17
18let b:undo_ftplugin = "setl mps< et< sts< sw< fo< cms< com< isk<"
19