From aae0389dcaa4a7e2e6bcfd71152657c40df06307 Mon Sep 17 00:00:00 2001 From: Benie Date: Fri, 8 Jun 2018 20:01:47 +0100 Subject: [PATCH] Enable UltiSnips when has('python3') is true --- vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 9f6dc0f..5ab7ec5 100644 --- a/vimrc +++ b/vimrc @@ -48,7 +48,7 @@ if !platform#is_windows() let g:ycm_warning_symbol = '▸' let g:ycm_goto_buffer_command = 'horizontal-split' endif -if has('python') +if has('python') || has('python3') " ultisnips - snippet engine Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' endif