Merge branch 'master' into slim-vim

This commit is contained in:
ViViDboarder 2019-10-24 13:28:19 -07:00
commit ad7da3997d
2 changed files with 5 additions and 1 deletions

View File

@ -10,3 +10,7 @@ repos:
rev: pre-commit-support
hooks:
- id: vint
exclude: >
(?x)^(
vim/colors/.*\.vim
)$

View File

@ -2,7 +2,7 @@ function! GetJavaIndent_improved()
let theIndent = GetJavaIndent()
let lnum = prevnonblank(v:lnum - 1)
let line = getline(lnum)
if line =~ '^\s*@.*$'
if line =~? '^\s*@.*$'
let theIndent = indent(lnum)
endif