In my .vimrc and my vim plugin UltiSnips I've got a lot of code that looks like that
:py << EOF
print("Hi")
EOF
Now, I want to check if python3 is compiled into Vim via has("python3") and then use :py3 instead of :py. Keeping the python code compatible between python 2 and 3 is not the issue - the issue is to tell vim to use :py3 if is available and :py otherwise.
Has someone a good idea?
You can take advantage on the fact that user defined commands in vim are simply place-in-patter-and-eval statements, and write:
if has("python3")
    command! -nargs=1 Py py3 <args>
else
    command! -nargs=1 Py py <args>
endif
Then you can use :Py to run python commands the same way as you regularly use :py or :py3.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With