From d40b8c40f09156faca598257046439f5fb56a070 Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Mon, 9 Mar 2009 17:20:51 -0400 Subject: [PATCH] Guard TabularMaps.vim against absent Tabular.vim --- after/plugin/TabularMaps.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/after/plugin/TabularMaps.vim b/after/plugin/TabularMaps.vim index fca27ab..20f7141 100644 --- a/after/plugin/TabularMaps.vim +++ b/after/plugin/TabularMaps.vim @@ -1,3 +1,7 @@ +if !exists(':Tabularize') + finish " Tabular.vim wasn't loaded +endif + let s:save_cpo = &cpo set cpo&vim