I'm new to VIM and am using this command to save and run a Python script:
:w !python
However, I can't move up and down to read the output. The only option I am given is to press enter or enter a command. I tried to yank(:%y+) everything, but the actual code is yanked and not the output. I would prefer to be able to read all the output displayed in VIM and even better would be opening a new tab with the output and being able to search and read through all of it.
:wand then go back and:!python exec.pybecause it doesnt save when I try it. And when I do that I get proper output displayed in vim, all of it.