From 681a3bc2944059692c91c61fd5c6e01afba28e62 Mon Sep 17 00:00:00 2001 From: Andrew Radev Date: Sun, 9 Feb 2020 10:57:53 +0200 Subject: [PATCH] Don't use .. for concatenation, doesn't work on vim 7.4 --- autoload/linediff.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/linediff.vim b/autoload/linediff.vim index 3cf8569..01cae38 100644 --- a/autoload/linediff.vim +++ b/autoload/linediff.vim @@ -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