1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00

Fixed plugin 'vim-rtags' initialization errors

Plugin 'lyuts/vim-rtags' has not supported python3 yet.
Issue Link [Python 3 support requirement](https://github.com/lyuts/vim-rtags/issues/86).
This commit is contained in:
Huanming Peng 2017-11-13 14:09:42 +08:00 committed by GitHub
parent 778b0a80ca
commit 3b610359f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ function! SpaceVim#layers#lang#c#plugins() abort
else else
call add(plugins, ['Rip-Rip/clang_complete']) call add(plugins, ['Rip-Rip/clang_complete'])
endif endif
call add(plugins, ['lyuts/vim-rtags', { 'if' : has('python3')}]) call add(plugins, ['lyuts/vim-rtags', { 'if' : has('python')}])
return plugins return plugins
endfunction endfunction