1" Vim filetype plugin 2" Language: J 3" Maintainer: David Bürgin <[email protected]> 4" URL: https://github.com/glts/vim-j 5" Last Change: 2014-03-17 6 7if exists('b:did_ftplugin') 8 finish 9endif 10let b:did_ftplugin = 1 11 12setlocal iskeyword=48-57,65-90,_,97-122 13setlocal comments=:NB. 14setlocal commentstring=NB.\ %s 15setlocal formatoptions-=t 16setlocal shiftwidth=2 softtabstop=2 expandtab 17setlocal matchpairs=(:) 18 19let b:undo_ftplugin = 'setlocal matchpairs< expandtab< softtabstop< shiftwidth< formatoptions< commentstring< comments< iskeyword<' 20