summaryrefslogtreecommitdiff
path: root/runtime/autoload/syntaxcomplete.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-17 20:09:31 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-17 20:09:31 +0200
commit56c860c315c517d304320e12bf7b5c1479546dae (patch)
tree241a75246c973179169e77f83dc8718796e3049f /runtime/autoload/syntaxcomplete.vim
parente9bd57286a5cbb0e1ec18b5d194dc4af1bda9f3a (diff)
downloadvim-git-56c860c315c517d304320e12bf7b5c1479546dae.tar.gz
Update runtime files.
Diffstat (limited to 'runtime/autoload/syntaxcomplete.vim')
-rw-r--r--runtime/autoload/syntaxcomplete.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/syntaxcomplete.vim b/runtime/autoload/syntaxcomplete.vim
index a18c3c360..98584b407 100644
--- a/runtime/autoload/syntaxcomplete.vim
+++ b/runtime/autoload/syntaxcomplete.vim
@@ -2,7 +2,7 @@
" Language: All languages, uses existing syntax highlighting rules
" Maintainer: David Fishburn <dfishburn dot vim at gmail dot com>
" Version: 13.0
-" Last Change: 2013 May 14
+" Last Change: 2019 Aug 08
" Usage: For detailed help, ":help ft-syntax-omni"
" History
@@ -597,7 +597,7 @@ function! s:SyntaxCSyntaxGroupItems( group_name, syntax_full )
" Remove all non-word characters
" let syn_list = substitute( syn_list, '\<match /\zs.\{-}\<\W\+\>.\{-}\ze\/ ', "", 'g' )
" let syn_list = substitute( syn_list, '\%(\<match \/[^/]\{-}\)\@<=\W\+\ze.\{-}\/ ', ' ', 'g' )
- " Do this by using the outer substitue() call to gather all
+ " Do this by using the outer substitute() call to gather all
" text between the match /.../ tags.
" The inner substitute() call operates on the text selected
" and replaces all non-word characters.