aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/vim.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-01-08 19:01:07 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-01-08 19:01:07 -0500
commit3706701d9b765df50c82a373b04371eac895fb1c (patch)
tree44f5e57e231166a878065e4f06b1ff7a94b3673f /runtime/indent/vim.vim
parenta42800ba4523fd010a9b55947d1c6312950af945 (diff)
parent4bc3bcab22561bb7f78a948a3de5c0d2c25f01ad (diff)
downloadrneovim-3706701d9b765df50c82a373b04371eac895fb1c.tar.gz
rneovim-3706701d9b765df50c82a373b04371eac895fb1c.tar.bz2
rneovim-3706701d9b765df50c82a373b04371eac895fb1c.zip
Merge pull request #3965 from jusga/vim-e3faf44
vim-patch:e3faf44
Diffstat (limited to 'runtime/indent/vim.vim')
-rw-r--r--runtime/indent/vim.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/vim.vim b/runtime/indent/vim.vim
index ff4af027b4..7511325af4 100644
--- a/runtime/indent/vim.vim
+++ b/runtime/indent/vim.vim
@@ -1,7 +1,7 @@
" Vim indent file
" Language: Vim script
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2014 Sep 19
+" Last Change: 2014 Dec 12
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
@@ -89,7 +89,7 @@ function GetVimIndentIntern()
" Subtract a 'shiftwidth' on a :endif, :endwhile, :catch, :finally, :endtry,
" :endfun, :else and :augroup END.
- if cur_text =~ '^\s*\(ene\@!\|cat\|fina\|el\|aug\%[roup]\s*!\=\s\+END\)'
+ if cur_text =~ '^\s*\(ene\@!\|cat\|fina\|el\|aug\%[roup]\s*!\=\s\+[eE][nN][dD]\)'
let ind = ind - &sw
endif