aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-09-06 18:30:54 -0700
committerJustin M. Keyes <justinkz@gmail.com>2019-09-06 18:35:06 -0700
commit0430a1ba88b2efa72617eee6b1e55f2121fb1c13 (patch)
tree28f50a9a1c7da0cff097594e24798be22fd24255 /runtime/autoload
parentc044ea09094ebd50c48f4869473e31cb67fbedb0 (diff)
downloadrneovim-0430a1ba88b2efa72617eee6b1e55f2121fb1c13.tar.gz
rneovim-0430a1ba88b2efa72617eee6b1e55f2121fb1c13.tar.bz2
rneovim-0430a1ba88b2efa72617eee6b1e55f2121fb1c13.zip
vim-patch:56c860c315c5
Update runtime files. https://github.com/vim/vim/commit/56c860c315c517d304320e12bf7b5c1479546dae
Diffstat (limited to 'runtime/autoload')
-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 0ce3e6e154..ea72204cbb 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.