aboutsummaryrefslogtreecommitdiff
path: root/.vim/c-support/syntax
diff options
context:
space:
mode:
authorRyan Kavanagh <ryanakca@kubuntu.org>2011-08-14 17:16:55 -0400
committerRyan Kavanagh <ryanakca@kubuntu.org>2011-08-25 07:42:57 -0400
commit1c019761dfaf6be82de9284fa5e2b9dbfbdec27d (patch)
tree7ed6bd2f437d3a334bd7a81f62e6dfa63689272b /.vim/c-support/syntax
Initial import
Diffstat (limited to '.vim/c-support/syntax')
-rw-r--r--.vim/c-support/syntax/c.vim21
1 files changed, 21 insertions, 0 deletions
diff --git a/.vim/c-support/syntax/c.vim b/.vim/c-support/syntax/c.vim
new file mode 100644
index 0000000..395e0d9
--- /dev/null
+++ b/.vim/c-support/syntax/c.vim
@@ -0,0 +1,21 @@
+"===================================================================================
+"
+" FILE: c.vim
+" DESCRIPTION: syntax file
+" enable syntax based folding
+" part of the c-support plugin
+"
+" AUTHOR: Dr.-Ing. Fritz Mehner
+" EMAIL: mehner@fh-swf.de
+" COMPANY: FH Südwestfalen, Iserlohn
+" VERSION: 1.0
+" CREATED: 11.03.2006
+" REVISION: ---
+"===================================================================================
+"
+" fold C blocks
+"
+syn region cBlock start="{" end="}" transparent fold
+set foldmethod=syntax
+set foldlevel=999
+