From 438bff6a637acc6ada43820494302b29e07e418b Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Sat, 14 Oct 2017 15:54:57 +0100 Subject: [PATCH] Whitespace. --- autoload/gitgutter/async.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autoload/gitgutter/async.vim b/autoload/gitgutter/async.vim index 5b2428b..bb72e81 100644 --- a/autoload/gitgutter/async.vim +++ b/autoload/gitgutter/async.vim @@ -10,11 +10,11 @@ let s:jobs = {} " MacVim-GUI didn't support async until 7.4.1832 (actually commit " 88f4fe0 but 7.4.1832 was the first subsequent patch release). 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('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')) + \ ) \ ) function! gitgutter#async#available()