mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-11 21:03:53 -05:00
Work around Vim parser idiosyncrasy
This commit is contained in:
@@ -1129,7 +1129,9 @@ function! s:Move(force,destination)
|
||||
endif
|
||||
endif
|
||||
if isdirectory(s:buffer().name())
|
||||
call s:buffer().setvar('&swapfile',0)
|
||||
" Work around Vim parser idiosyncrasy
|
||||
let b = s:buffer()
|
||||
call b.setvar('&swapfile',0)
|
||||
endif
|
||||
let message = call(s:repo().git_chomp_in_tree,['mv']+(a:force ? ['-f'] : [])+['--', s:buffer().path(), destination], s:repo())
|
||||
if v:shell_error
|
||||
|
||||
Reference in New Issue
Block a user