aboutsummaryrefslogtreecommitdiff
path: root/ftplugin
diff options
context:
space:
mode:
authorMax Christian Pohle2018-01-31 00:39:09 +0100
committerMax Christian Pohle2018-01-31 00:39:09 +0100
commit449c7d316d7176c0fe44bf570d18d013fe3f3272 (patch)
tree2ec21421dbc510af0a3cee533711821f887483b8 /ftplugin
parent7eea1b6c9c6f807fe53ff896a88a14171334c690 (diff)
downloadvim-449c7d316d7176c0fe44bf570d18d013fe3f3272.tar.bz2
vim-449c7d316d7176c0fe44bf570d18d013fe3f3272.zip
Added comment folding to C filetype
this works by overruling some of the default settings, see :help mysyntaxfile-add*
Diffstat (limited to 'ftplugin')
-rw-r--r--ftplugin/c.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/ftplugin/c.vim b/ftplugin/c.vim
deleted file mode 100644
index 12ba001..0000000
--- a/ftplugin/c.vim
+++ /dev/null
@@ -1,9 +0,0 @@
1set number
2
3syntax match Define "\<[A-Z][A-Z0-9_]*\>"
4syntax match Todo "\/\/ @[A-Z]*\:.*$"
5
6" syntax match cType "struct\s+[A-Za-z0-9_]+\>"
7" syn clear cStructure
8" highlight! link defines Special
9
..