2013-09-22 14:42:24 +02:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: J
|
|
|
|
" Maintainer: David Bürgin <676c7473@gmail.com>
|
2014-03-22 21:02:50 +01:00
|
|
|
" URL: https://github.com/glts/vim-j
|
|
|
|
" Last Change: 2014-03-17
|
2013-09-22 14:42:24 +02:00
|
|
|
|
2014-03-22 21:02:50 +01:00
|
|
|
if exists('b:did_ftplugin')
|
2013-09-22 14:42:24 +02:00
|
|
|
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
|
|
|
|
2014-03-22 21:02:50 +01:00
|
|
|
let b:undo_ftplugin = 'setlocal matchpairs< expandtab< softtabstop< shiftwidth< formatoptions< commentstring< comments< iskeyword<'
|