Skip to content

Commit

Permalink
- Fixed neocomplcache#skip_next_complete().
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jun 9, 2013
1 parent 571471a commit 9c0acb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion autoload/neocomplcache.vim
@@ -1,7 +1,7 @@
"=============================================================================
" FILE: neocomplcache.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 05 Jun 2013.
" Last Modified: 09 Jun 2013.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -361,6 +361,10 @@ endfunction"}}}
function! neocomplcache#check_invalid_omnifunc(omnifunc) "{{{
return a:omnifunc == '' || (a:omnifunc !~ '#' && !exists('*' . a:omnifunc))
endfunction"}}}
function! neocomplcache#skip_next_complete() "{{{
let neocomplcache = neocomplcache#get_current_neocomplcache()
let neocomplcache.skip_next_complete = 1
endfunction"}}}

function! neocomplcache#set_dictionary_helper(variable, keys, value) "{{{
return neocomplcache#util#set_dictionary_helper(
Expand Down

0 comments on commit 9c0acb1

Please sign in to comment.