diff options
Diffstat (limited to 'bundle')
-rw-r--r-- | bundle/github-url/autoload/github_url.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/github-url/autoload/github_url.vim b/bundle/github-url/autoload/github_url.vim index 11110a8..c83c6f6 100644 --- a/bundle/github-url/autoload/github_url.vim +++ b/bundle/github-url/autoload/github_url.vim @@ -14,7 +14,7 @@ endfunction " argument comes from a `:command`'s `<count>`, and tells the function whether " a range was given. function! s:FileURL(include_lines, start_line, end_line) - let current_sha = system('git show --format="format:%H"') + let current_sha = system('git show --no-patch --format="format:%H"') let current_sha = substitute(current_sha, '\n$', '', '') let current_filename = expand('%') let lines = '' |