0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

20 lines
540 B
VimL
Raw Normal View History

" 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
2014-03-22 21:02:50 +01: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
setlocal shiftwidth=2 softtabstop=2 expandtab
2013-11-03 21:14:31 +01:00
setlocal matchpairs=(:)
2014-03-22 21:02:50 +01:00
let b:undo_ftplugin = 'setlocal matchpairs< expandtab< softtabstop< shiftwidth< formatoptions< commentstring< comments< iskeyword<'