How to specify Python interpreter version in VIM?

后端 未结 2 875
耶瑟儿~
耶瑟儿~ 2021-01-05 03:44

In order to write C++ in Vim with plugin, Clang_complete.
After installing, this error occurs:

Error detected while processing function 14_C         


        
2条回答
  •  旧巷少年郎
    2021-01-05 04:15

    " .gvimrc
    
    let &pythonthreedll='C:\...\python37.dll'
    let &pythonthreehome='C:\...\Python37'
    

    check:

    :py3 print('hello')
    

    and VIM should be matched as the Python (I mean 64, 32 bit)

    windows vim x64 download

提交回复
热议问题