Merge pull request #378 from h-youhei/indent

Reset indent if the line starts with syntax
This commit is contained in:
Shougo 2017-03-15 08:08:43 +09:00 committed by GitHub
commit b869a031a9
1 changed files with 30 additions and 10 deletions

View File

@ -35,28 +35,48 @@ set cpo&vim
if !exists('b:undo_indent')
let b:undo_indent = ''
else
let b:undo_indent = '|'
let b:undo_indent .= '|'
endif
setlocal autoindent
setlocal indentexpr=SnippetsIndent()
setlocal indentkeys=o,O,=include\ ,=snippet\ ,=abbr\ ,=prev_word\ ,=delete\ ,=alias\ ,=options\ ,=regexp\ ,!^F
let b:undo_indent .= 'setlocal
\ autoindent<
\ indentexpr<
\ indentkeys<
\'
function! SnippetsIndent() abort "{{{
let line = getline('.')
let prev_line = (line('.') == 1)? '' : getline(line('.')-1)
let syntax = '\%(include\|snippet\|abbr\|prev_word\|delete\|alias\|options\|regexp\)'
let syntax = '\%(include\|snippet\|abbr\|prev_word\|delete\|alias\|options\|regexp\)\s'
let defining = '\%(snippet\|abbr\|prev_word\|alias\|options\|regexp\)\s'
if prev_line =~ '^\s*$'
return 0
elseif prev_line =~ '^' . syntax && line !~ '^\s*' . syntax
return shiftwidth()
"for indentkeys o,O
if s:is_empty(line)
if prev_line =~ '^' . defining
return shiftwidth()
else
return -1
endif
"for indentkeys =words
else
return match(line, '\S')
if line =~ '^\s*' . syntax
\ && (s:is_empty(prev_line)
\ || prev_line =~ '^' . defining)
return 0
else
return -1
endif
endif
endfunction"}}}
let b:undo_indent .= '
\ setlocal indentexpr<
\'
function! s:is_empty(line)
return a:line =~ '^\s*$'
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo