From ae88cdf03a9496cb5cf794f9a09608c8d743c72e Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Tue, 13 Nov 2012 10:49:55 -0600 Subject: [PATCH] Prevent neocomplcache hanging in python [Fix #163] --- vim/plugin/settings/neocomplcache.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/plugin/settings/neocomplcache.vim b/vim/plugin/settings/neocomplcache.vim index d2ace5b..51800df 100644 --- a/vim/plugin/settings/neocomplcache.vim +++ b/vim/plugin/settings/neocomplcache.vim @@ -37,3 +37,6 @@ if !exists('g:neocomplcache_omni_patterns') let g:neocomplcache_omni_patterns = {} endif let g:neocomplcache_omni_patterns.ruby = '[^. *\t]\.\w*\|\h\w*::' + +" Prevent hanging with python: https://github.com/skwp/dotfiles/issues/163 +let g:neocomplcache_omni_patterns['python'] = ''