From abd286ca83ae99a801e8cee8ef1bb3756cee4311 Mon Sep 17 00:00:00 2001 From: mattn Date: Tue, 2 Jul 2013 13:04:59 +0900 Subject: [PATCH] Possible to disable airline --- plugin/airline.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/airline.vim b/plugin/airline.vim index eb94a54..fef8e9d 100644 --- a/plugin/airline.vim +++ b/plugin/airline.vim @@ -1,3 +1,7 @@ +if &cp || v:version < 702 || (exists('g:loaded_airline') && g:loaded_airline) + finish +endif +let g:loaded_airline = 1 if !exists('g:airline_left_sep') let g:airline_left_sep = exists('g:airline_powerline_fonts')?"":">" endif