aboutsummaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-01-27 22:57:08 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-01-27 22:57:08 -0500
commitd459a0891cfafbbb9e4a36af2a3e77ced96983f2 (patch)
treee98f431abf228b97bc1e68bca847c6a667d91df9 /runtime/ftplugin
parent130611fca3900276d4525e17ded47504d73b38a1 (diff)
parent71980676f0ab9e29bd8bc72791febe0d53d91921 (diff)
downloadrneovim-d459a0891cfafbbb9e4a36af2a3e77ced96983f2.tar.gz
rneovim-d459a0891cfafbbb9e4a36af2a3e77ced96983f2.tar.bz2
rneovim-d459a0891cfafbbb9e4a36af2a3e77ced96983f2.zip
Merge pull request #4111 from nicdumz/vim-5a5f459
vim-patch:5a5f459
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r--runtime/ftplugin/j.vim7
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/ftplugin/j.vim b/runtime/ftplugin/j.vim
index 71ac4c5418..774696836f 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.