aboutsummaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorNicolas Dumazet <ndumazet@google.com>2016-01-27 14:17:19 +0100
committerNicolas Dumazet <ndumazet@google.com>2016-01-27 14:22:48 +0100
commit71980676f0ab9e29bd8bc72791febe0d53d91921 (patch)
treee98f431abf228b97bc1e68bca847c6a667d91df9 /runtime/ftplugin
parent130611fca3900276d4525e17ded47504d73b38a1 (diff)
downloadrneovim-71980676f0ab9e29bd8bc72791febe0d53d91921.tar.gz
rneovim-71980676f0ab9e29bd8bc72791febe0d53d91921.tar.bz2
rneovim-71980676f0ab9e29bd8bc72791febe0d53d91921.zip
vim-patch:5a5f459
Original commit: https://github.com/vim/vim/commit/5a5f459 commit 5a5f45917dbf542cb00617fa5ef70a14898495dd Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 13 12:43:06 2015 +0200 Updated runtime files. (1) Merged manually vimrc_example.vim (2) Left out README.txt, doc/tags, doc/todo.txt, tutor/tutor.de, tutor.de.utf-8, ga.po
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.