From 14cfe668129345bd6be3b26946f0c16d522e2203 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. --- plugin/ultisnips-settings.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/ultisnips-settings.vim b/plugin/ultisnips-settings.vim index 9a941df..8ed4251 100644 --- a/plugin/ultisnips-settings.vim +++ b/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