Remove i special behavior on section heading

This commit is contained in:
Tim Pope 2019-07-23 20:10:31 -04:00
parent 994d1b518f
commit ce283cbdbf

View File

@ -2732,12 +2732,7 @@ endfunction
function! s:NextExpandedHunk(count) abort
for i in range(a:count)
if getline('.') =~# '^Unstaged\|^Untracked'
call s:TreeChomp('add', '--intent-to-add', '--', s:Tree())
exe s:ReloadStatus()
else
call s:StageInline('show', line('.'), 1)
endif
call search('^[A-Z?] .\|^diff --\|^@','W')
endfor
return '.'