From f19b6203191d69de955d91467a5707959572119b Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Wed, 24 Aug 2022 14:29:47 +0100 Subject: [PATCH] Fix patch strings to use conventional format See #841. --- autoload/gitgutter/async.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/gitgutter/async.vim b/autoload/gitgutter/async.vim index d476748..8b9f130 100644 --- a/autoload/gitgutter/async.vim +++ b/autoload/gitgutter/async.vim @@ -1,8 +1,8 @@ let s:available = has('nvim') || ( \ has('job') && ( - \ (has('patch-7-4-1826') && !has('gui_running')) || - \ (has('patch-7-4-1850') && has('gui_running')) || - \ (has('patch-7-4-1832') && has('gui_macvim')) + \ (has('patch-7.4.1826') && !has('gui_running')) || + \ (has('patch-7.4.1850') && has('gui_running')) || + \ (has('patch-7.4.1832') && has('gui_macvim')) \ ) \ )