diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-29 21:18:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-29 21:18:24 +0000 |
commit | e2f98b95c8071f772695602cd4f714dc588eb8e7 (patch) | |
tree | 28442f952f7e5258e2addd8871a4a2930e768c0a /runtime/autoload/syntaxcomplete.vim | |
parent | 86ca6e3b8c9c5d909421eb5abc2d81e02d402b49 (diff) | |
download | vim-git-e2f98b95c8071f772695602cd4f714dc588eb8e7.tar.gz |
updated for version 7.0c03v7.0c03
Diffstat (limited to 'runtime/autoload/syntaxcomplete.vim')
-rw-r--r-- | runtime/autoload/syntaxcomplete.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/autoload/syntaxcomplete.vim b/runtime/autoload/syntaxcomplete.vim index 4a13d4f0a..6158a271c 100644 --- a/runtime/autoload/syntaxcomplete.vim +++ b/runtime/autoload/syntaxcomplete.vim @@ -1,8 +1,8 @@ " Vim completion script " Language: All languages, uses existing syntax highlighting rules " Maintainer: David Fishburn <fishburn@ianywhere.com> -" Version: 1.2 -" Last Change: Sat Mar 18 2006 8:25:30 PM +" Version: 1.3 +" Last Change: Mon Mar 27 2006 9:29:35 PM " Set completion with CTRL-X CTRL-O to autoloaded function. " This check is in place in case this script is @@ -181,7 +181,7 @@ function! OmniSyntaxList() if get_syn_list == 1 " Pass in the full syntax listing, plus the group name we " are interested in. - let extra_syn_list = s:SyntaxGroupItems(group_name, syntax_full) + let extra_syn_list = s:SyntaxCSyntaxGroupItems(group_name, syntax_full) let syn_list = syn_list . extra_syn_list . "\n" endif @@ -212,7 +212,7 @@ function! OmniSyntaxList() endif endfunction -function! s:SyntaxGroupItems( group_name, syntax_full ) +function! s:SyntaxCSyntaxGroupItems( group_name, syntax_full ) let syn_list = "" |