summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/c.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-12 23:01:46 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-12 23:01:46 +0200
commitc95a302a4c42ec8230473cd4a5e0064d0a143aa8 (patch)
treeec8985d4cea1e9ace755daa0018a3cf62c62994d /runtime/ftplugin/c.vim
parent2d35899721da0e9359a9fe1059554f8c4ea7f0c1 (diff)
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin/c.vim')
-rw-r--r--runtime/ftplugin/c.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/c.vim b/runtime/ftplugin/c.vim
index 19e8c51edb..5c95438458 100644
--- a/runtime/ftplugin/c.vim
+++ b/runtime/ftplugin/c.vim
@@ -1,7 +1,7 @@
" Vim filetype plugin file
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2012 Jul 10
+" Last Change: 2016 Jun 12
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
@@ -37,7 +37,7 @@ endif
" When the matchit plugin is loaded, this makes the % command skip parens and
" braces in comments.
let b:match_words = &matchpairs . ',^\s*#\s*if\(\|def\|ndef\)\>:^\s*#\s*elif\>:^\s*#\s*else\>:^\s*#\s*endif\>'
-let b:match_skip = 's:comment\|string\|character'
+let b:match_skip = 's:comment\|string\|character\|special'
" Win32 can filter files in the browse dialog
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")