From ae3af85ca2c56ce53542351d3fde857f63ab0d9d Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 18 Nov 2020 08:36:16 +0100 Subject: [PATCH] highlighter: remove a couple of empty lines in legacy vimscript implementation --- autoload/airline/highlighter.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/autoload/airline/highlighter.vim b/autoload/airline/highlighter.vim index e0885a9e..833ba534 100644 --- a/autoload/airline/highlighter.vim +++ b/autoload/airline/highlighter.vim @@ -24,7 +24,6 @@ if !exists(":def") || (exists(":def") && get(g:, "airline_experimental", 0)==0) let rgb = map(split(a:rgb[1:], '..\zs'), '0 + ("0x".v:val)') return airline#msdos#round_msdos_colors(rgb) endfunction - function! s:group_not_done(list, name) abort " {{{2 if index(a:list, a:name) == -1 call add(a:list, a:name) @@ -54,7 +53,6 @@ if !exists(":def") || (exists(":def") && get(g:, "airline_experimental", 0)==0) function! s:get_array(guifg, guibg, ctermfg, ctermbg, opts) abort " {{{2 return [ a:guifg, a:guibg, a:ctermfg, a:ctermbg, empty(a:opts) ? '' : join(a:opts, ',') ] endfunction - function! airline#highlighter#reset_hlcache() abort " {{{2 let s:hl_groups = {} endfunction @@ -153,7 +151,6 @@ if !exists(":def") || (exists(":def") && get(g:, "airline_experimental", 0)==0) endif return a:colors[0:1] + [fg, bg] + [a:colors[4]] endfunction - function! s:GetHiCmd(list) abort " {{{2 " a:list needs to have 5 items! let res = ''