2013-09-22 14:42:24 +02:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: J
|
|
|
|
" Maintainer: David Bürgin <676c7473@gmail.com>
|
2013-11-03 21:14:31 +01:00
|
|
|
" Last Change: 2013-10-06
|
2013-09-22 14:42:24 +02:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
setlocal iskeyword=48-57,65-90,_,97-122
|
|
|
|
setlocal comments=:NB.
|
|
|
|
setlocal commentstring=NB.\ %s
|
2013-11-03 21:14:31 +01:00
|
|
|
setlocal formatoptions-=t
|
2013-09-22 14:42:24 +02:00
|
|
|
setlocal shiftwidth=2 softtabstop=2 expandtab
|
2013-11-03 21:14:31 +01:00
|
|
|
setlocal matchpairs=(:)
|
2013-09-22 14:42:24 +02:00
|
|
|
|
2013-11-03 21:14:31 +01:00
|
|
|
let b:undo_ftplugin = "setl mps< et< sts< sw< fo< cms< com< isk<"
|