Python in Vim buffer?
python, vim
Solution
No, you can't run a shell in Vim by default. That's by design.
However, there are a handful of ways to accomplish this:
- GNU Screen and using windows
- tmux and using windows
- The Vim-Shell patch
- Vim scripts like Conque
Problem
Is it possible to have a Python interpreter open in a Vim buffer? Something like: ``` ________________________ | | | | | my python script | | | | | ------------------------ | | | python interpreter | ------------------------ ``` Right now I have Vim open and a separate interpreter open. I saw the answer to this and was blown away. Anyway, thanks for the help and if there is something I can just google then point me in that direction.