Skip to content

Commit

Permalink
Don't use .. for concatenation, doesn't work on vim 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewRadev committed Feb 9, 2020
1 parent 4c93ccd commit 681a3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/linediff.vim
Expand Up @@ -98,7 +98,7 @@ function! s:LinediffLocalPick()

if len(target_lines) > 0
" then delete the area and replace it with the picked target
silent exe range_start..','..range_end.."delete _"
silent exe range_start . ',' . range_end . "delete _"
call append(range_start - 1, target_lines)
endif
endfunction
Expand Down

0 comments on commit 681a3bc

Please sign in to comment.