diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-04-13 12:43:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-04-13 12:43:06 +0200 |
commit | 5a5f45917dbf542cb00617fa5ef70a14898495dd (patch) | |
tree | a3230510c832eba7fa7eb8f4994783b56f842a51 /runtime/ftplugin | |
parent | 695baeefe17adcd95f91d089efee87bd96fc98db (diff) | |
download | vim-git-5a5f45917dbf542cb00617fa5ef70a14898495dd.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/j.vim | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/ftplugin/j.vim b/runtime/ftplugin/j.vim index 71ac4c541..774696836 100644 --- a/runtime/ftplugin/j.vim +++ b/runtime/ftplugin/j.vim @@ -2,7 +2,7 @@ " Language: J " Maintainer: David Bürgin <676c7473@gmail.com> " URL: https://github.com/glts/vim-j -" Last Change: 2015-01-11 +" Last Change: 2015-03-27 if exists('b:did_ftplugin') finish @@ -16,12 +16,9 @@ setlocal iskeyword=48-57,A-Z,_,a-z setlocal comments=:NB. setlocal commentstring=NB.\ %s setlocal formatoptions-=t -setlocal shiftwidth=2 -setlocal softtabstop=2 -setlocal expandtab setlocal matchpairs=(:) -let b:undo_ftplugin = 'setlocal matchpairs< expandtab< softtabstop< shiftwidth< formatoptions< commentstring< comments< iskeyword<' +let b:undo_ftplugin = 'setlocal matchpairs< formatoptions< commentstring< comments< iskeyword<' " Section movement with ]] ][ [[ []. The start/end patterns below are amended " inside the function in order to avoid matching on the current cursor line. |