R, Python, Scala etc. all come with REPL-environments, which I don't want to miss, however, most of the time editing text in them sucks, so I edit the code in vim, paste it and look at the output and edit the code in vim again.

I can run the current file with !python % and I can run the current line with even more vim magic, however, this will start a new process of the interpreter.

Is it possible to start a REPL and send lines of code to the running REPL (and get the results back, obviously)?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Maybe one of these two plugins is what you need:

link|improve this answer
Thanks, the approach with named screens is working for me. – tstenner Oct 30 '11 at 11:53
feedback

Try Conque:

""" Conque is a Vim plugin which allows you to run interactive programs, such as bash on linux or powershell.exe on Windows, inside a Vim buffer. """

It can easily be configured to open a Python interpreter, and a key mapping can be used to transfer the current line to it to be executed (F9 for the current line, F10 for the current file etc.).

link|improve this answer
feedback

Not for plain-python alone, but if you're using IPython 0.11 or later, take a look at vim-ipython.

Using this plugin, you can send lines or whole files for IPython to execute, and also get back object introspection and word completions in Vim, like what you get with: object?<enter> and object.<tab> in IPython. Additionally, vim-ipython has a "shell" mode, where as you send lines to IPython, you get to see the results those lines produced back in the specialize buffer. See the second screencast on this post

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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