Enable UltiSnips when has('python3') is true

This commit is contained in:
Kenneth Benzie 2018-06-08 20:01:47 +01:00
parent a6e299381e
commit aae0389dca

2
vimrc
View File

@ -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