summaryrefslogtreecommitdiffstats
path: root/.vim/c-support/templates/c.preprocessor.template
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2010-04-23 01:20:36 -0400
committerbnewbold <bnewbold@robocracy.org>2010-04-23 01:20:36 -0400
commite0cb5545ccb95cbc6cf03fd256cca622f613ecdf (patch)
tree219ab0ba233d717b90b21968acf51454cd6c9dc5 /.vim/c-support/templates/c.preprocessor.template
parentf505cc10656d4262dba69aa6ced81dd9024ec592 (diff)
downloadopenwrt-repro-e0cb5545ccb95cbc6cf03fd256cca622f613ecdf.tar.gz
openwrt-repro-e0cb5545ccb95cbc6cf03fd256cca622f613ecdf.zip
removed a bunch of unused vim stuff
Diffstat (limited to '.vim/c-support/templates/c.preprocessor.template')
-rw-r--r--.vim/c-support/templates/c.preprocessor.template49
1 files changed, 0 insertions, 49 deletions
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 <<CURSOR>>
-$-------------------------------------------------------------------------
-== preprocessor.include-local ==
-#include "<CURSOR>"
-$-------------------------------------------------------------------------
-== preprocessor.define ==
-#define <CURSOR> /* */
-$-------------------------------------------------------------------------
-== preprocessor.undefine ==
-#undef <CURSOR> /* */
-$-------------------------------------------------------------------------
-== preprocessor.if-else-endif ==
-#if |?CONDITION:u|
-<CURSOR><SPLIT>
-#else /* ----- not |CONDITION| ----- */
-<+ELSE PART+>
-#endif /* ----- not |CONDITION| ----- */
-$-------------------------------------------------------------------------
-== preprocessor.ifdef-else-endif ==
-#ifdef |?CONDITION:u|
-<CURSOR><SPLIT>
-#else /* ----- not |CONDITION| ----- */
-<+ELSE PART+>
-#endif /* ----- not |CONDITION| ----- */
-$-------------------------------------------------------------------------
-== preprocessor.ifndef-else-endif ==
-#ifndef |?CONDITION:u|
-<CURSOR><SPLIT>
-#else /* ----- not |CONDITION| ----- */
-<+ELSE PART+>
-#endif /* ----- not |CONDITION| ----- */
-$-------------------------------------------------------------------------
-== preprocessor.ifndef-def-endif ==
-#ifndef |?BASENAME:L|_INC
-#define |BASENAME|_INC
-<CURSOR><SPLIT>
-#endif /* ----- #ifndef |BASENAME|_INC ----- */
-$-------------------------------------------------------------------------
-== preprocessor.error ==
-#error "<CURSOR>" /* */
-$-------------------------------------------------------------------------
-== preprocessor.line ==
-#line <CURSOR> /* */
-$-------------------------------------------------------------------------
-== preprocessor.pragma ==
-#pragma <CURSOR> /* */
-$-------------------------------------------------------------------------