From 0cc59f9dc8994b4b2f2556cf251d27758f4cbe14 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Thu, 17 Jul 2014 14:12:06 -0700 Subject: [PATCH] Ignore no python warning in UltiSnips plugin Sometimes, the system Vim opens which doesn't have python support enabled. This change prevents UltiSnips from displaying an error message on startup. --- vim/plugin/ultisnips-settings.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/plugin/ultisnips-settings.vim b/vim/plugin/ultisnips-settings.vim index 9a941df..8ed4251 100644 --- a/vim/plugin/ultisnips-settings.vim +++ b/vim/plugin/ultisnips-settings.vim @@ -12,3 +12,5 @@ let g:UltiSnipsJumpBackwardTrigger="" " Edit splits in a vertical split let g:UltiSnipsEditSplit='vertical' +" Ignore the no python warning if Vim doesn't have python support enabled +let g:UltiSnipsNoPythonWarning=1