Avoid error on windows

In order to avoid an error "Invalid filename", this little fix get gitgutter working on windows with msysgit
This commit is contained in:
Vincent
2013-02-20 14:21:57 +01:00
parent 80f08203e1
commit 5fae75637c

View File

@@ -30,7 +30,7 @@ endfunction
" Utility {{{
function! s:current_file()
return expand('%')
return expand("%:p")
endfunction
function! s:is_in_a_git_repo()