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.

link|improve this question

how would you like to use it? – stefanB Nov 17 '09 at 4:30
stefanB, I'd like to be able to switch between buffers without having to grab my mouse :) – Casey Nov 17 '09 at 4:37
@Casey - does you operating system support alt-tab application switching? I can switch between all my applications without using my mouse. ;) – robince Nov 17 '09 at 9:12
Thrope, yeah i can alt-tab but was hoping for something in vim. – Casey Nov 17 '09 at 13:02
feedback

5 Answers

up vote 12 down vote accepted

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:

link|improve this answer
2  
+1 for Screen, I find that combination excellent. – Greg Hewgill Nov 17 '09 at 4:44
2  
re GNU Screen: there's also BSD tmux – just somebody Nov 17 '09 at 4:55
Yes tmux is a lot more intuitive when it comes to splitting the window. wave.googleusercontent.com/wave/attachment/… – Amjith Nov 17 '09 at 20:59
feedback

You could have a look at PIDA. Not exactly what you asked for but it is a Python IDE that embeds vim so might do the trick.

link|improve this answer
Thank you very much for introducing me to PIDA. It looks awesome and works great on my machine (its like a dream come true). Do you know if there are any windows IDEs that can embed VIM? – Amjith Nov 17 '09 at 20:57
1  
Only other one I know is eclim which I think works on windows... haven't used it but it looks pretty flexible (you can have vim in eclipse basically) – robince Nov 17 '09 at 21:14
feedback

Check out Pimp. Also, read this related question.

alt text

link|improve this answer
feedback

Looks like this vim plugin seems to do the job.

http://www.vim.org/scripts/script.php?script%5Fid=2043

link|improve this answer
feedback

what you want is have a vim window act as a terminal. AFAIK vim can't do this (yet?). otoh, if you aren't wed to vim (yet), try emacs, which does have that feature.

link|improve this answer
12  
The user may not be wed to vim, but that doesn't mean he's open to sleep with a fat whore (emacs). – brianegge Nov 17 '09 at 4:33
brianegge, i wish comment upvote could give points hahaha – Casey Nov 17 '09 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.