From e0cb5545ccb95cbc6cf03fd256cca622f613ecdf Mon Sep 17 00:00:00 2001 From: bnewbold Date: Fri, 23 Apr 2010 01:20:36 -0400 Subject: removed a bunch of unused vim stuff --- .vim/c-support/templates/c.preprocessor.template | 49 ------------------------ 1 file changed, 49 deletions(-) delete mode 100644 .vim/c-support/templates/c.preprocessor.template (limited to '.vim/c-support/templates/c.preprocessor.template') diff --git a/.vim/c-support/templates/c.preprocessor.template b/.vim/c-support/templates/c.preprocessor.template deleted file mode 100644 index f3aa127..0000000 --- a/.vim/c-support/templates/c.preprocessor.template +++ /dev/null @@ -1,49 +0,0 @@ -$------------------------------------------------------------------------- -== preprocessor.include-global == -#include <> -$------------------------------------------------------------------------- -== preprocessor.include-local == -#include "" -$------------------------------------------------------------------------- -== preprocessor.define == -#define /* */ -$------------------------------------------------------------------------- -== preprocessor.undefine == -#undef /* */ -$------------------------------------------------------------------------- -== preprocessor.if-else-endif == -#if |?CONDITION:u| - -#else /* ----- not |CONDITION| ----- */ -<+ELSE PART+> -#endif /* ----- not |CONDITION| ----- */ -$------------------------------------------------------------------------- -== preprocessor.ifdef-else-endif == -#ifdef |?CONDITION:u| - -#else /* ----- not |CONDITION| ----- */ -<+ELSE PART+> -#endif /* ----- not |CONDITION| ----- */ -$------------------------------------------------------------------------- -== preprocessor.ifndef-else-endif == -#ifndef |?CONDITION:u| - -#else /* ----- not |CONDITION| ----- */ -<+ELSE PART+> -#endif /* ----- not |CONDITION| ----- */ -$------------------------------------------------------------------------- -== preprocessor.ifndef-def-endif == -#ifndef |?BASENAME:L|_INC -#define |BASENAME|_INC - -#endif /* ----- #ifndef |BASENAME|_INC ----- */ -$------------------------------------------------------------------------- -== preprocessor.error == -#error "" /* */ -$------------------------------------------------------------------------- -== preprocessor.line == -#line /* */ -$------------------------------------------------------------------------- -== preprocessor.pragma == -#pragma /* */ -$------------------------------------------------------------------------- -- cgit v1.2.3