diff options
author | Max Christian Pohle | 2018-01-31 00:39:09 +0100 |
---|---|---|
committer | Max Christian Pohle | 2018-01-31 00:39:09 +0100 |
commit | 449c7d316d7176c0fe44bf570d18d013fe3f3272 (patch) | |
tree | 2ec21421dbc510af0a3cee533711821f887483b8 /ftplugin | |
parent | 7eea1b6c9c6f807fe53ff896a88a14171334c690 (diff) | |
download | vim-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.vim | 9 |
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 @@ | |||
1 | set number | ||
2 | |||
3 | syntax match Define "\<[A-Z][A-Z0-9_]*\>" | ||
4 | syntax 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 | |||