I'm trying to remap a key to yank/put selected text from a script into a Python interpreter using ConqueTerm. Everything is fine, except this...
def main():
print "Testing 123"
main()
turns into this...
>>> def main(): print "Testing 123"main()
in the interpreter. How can I keep the multi-line formatting?
Note: I've already tried plugins like vim-conque-repl and vim-ipython, but I haven't been able to get either of them to work correctly.