Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
black-desk committed Jan 10, 2022
1 parent 82eb778 commit d121bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/blamer.vim
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function! blamer#GetMessages(file, line_number, line_count) abort
let l:dir_path = shellescape(s:substitute_path_separator(expand('%:h')))
let l:end_line = a:line_number + a:line_count - 1
let l:file_path_escaped = shellescape(a:file)
execute 'write' fnameescape(s:buffer)
silent execute 'write!' fnameescape(s:buffer)
let l:command = 'git -C ' . l:dir_path . ' --no-pager blame --line-porcelain -L ' . a:line_number . ',' . l:end_line . ' --contents ' . s:buffer . ' -- ' . l:file_path_escaped
echo l:command
let l:result = system(l:command)
Expand Down

0 comments on commit d121bdd

Please sign in to comment.