tpope / vim-fireplace

fireplace.vim: Clojure REPL support
https://www.vim.org/scripts/script.php?script_id=4978
1.75k stars 139 forks source link

Support python3 in vim #290

Closed wyegelwel closed 5 years ago

wyegelwel commented 7 years ago

This is more of a heads up then anything else.

I installed a recent version of Ubuntu (16.10, though apparently 16.04 also has this) and the default vim (sudo apt-get install vim) doesn't come compiled with python support, only python3. This was causing serious problems with the experience of fireplace (evals were hanging). I followed the recommendation on this page to get "python" support instead. http://askubuntu.com/questions/775059/vim-python-support-on-ubuntu-16-04 Now things are working fine.

tpope commented 7 years ago

My strategy around this has been to try to support both Python 2 and 3, though I guess I only tested the external execution code path. Fixing it might be as simple as updating the has('python') checks to allow for Python 3.

tpope commented 5 years ago

:python3 is now supported.