From 5859050d293787ba3676517b16a9ecd141f3c002 Mon Sep 17 00:00:00 2001 From: w0rp Date: Thu, 6 Jul 2017 10:51:05 +0100 Subject: [PATCH] Fix some bad indentation --- autoload/ale/statusline.vim | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/autoload/ale/statusline.vim b/autoload/ale/statusline.vim index 673748ca..afc27b3b 100644 --- a/autoload/ale/statusline.vim +++ b/autoload/ale/statusline.vim @@ -50,14 +50,14 @@ endfunction " Get the counts for the buffer, and update the counts if needed. function! s:GetCounts(buffer) abort -if !exists('g:ale_buffer_info') || !has_key(g:ale_buffer_info, a:buffer) - return s:CreateCountDict() -endif + if !exists('g:ale_buffer_info') || !has_key(g:ale_buffer_info, a:buffer) + return s:CreateCountDict() + endif -" Cache is cold, so manually ask for an update. -if !has_key(g:ale_buffer_info[a:buffer], 'count') - call ale#statusline#Update(a:buffer, g:ale_buffer_info[a:buffer].loclist) -endif + " Cache is cold, so manually ask for an update. + if !has_key(g:ale_buffer_info[a:buffer], 'count') + call ale#statusline#Update(a:buffer, g:ale_buffer_info[a:buffer].loclist) + endif return g:ale_buffer_info[a:buffer].count endfunction