mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-11 12:53:52 -05:00
@@ -882,9 +882,6 @@ function! s:StageToggle(lnum1,lnum2) abort
|
||||
if filename ==# ''
|
||||
continue
|
||||
endif
|
||||
if !exists('first_filename')
|
||||
let first_filename = filename
|
||||
endif
|
||||
execute lnum
|
||||
if filename =~ ' -> '
|
||||
let cmd = ['mv','--'] + reverse(split(filename,' -> '))
|
||||
@@ -898,6 +895,9 @@ function! s:StageToggle(lnum1,lnum2) abort
|
||||
else
|
||||
let cmd = ['add','-A','--',filename]
|
||||
endif
|
||||
if !exists('first_filename')
|
||||
let first_filename = filename
|
||||
endif
|
||||
let output .= call(repo.git_chomp_in_tree,cmd,s:repo())."\n"
|
||||
endfor
|
||||
if exists('first_filename')
|
||||
|
||||
Reference in New Issue
Block a user