vim - run :!command in a real terminal -
i can use pudb (an ncurses python debugger) in vim, because, instance, :!python %
runs in actual terminal window. prefer use gvim, gvim runs :!python %
in vim "dumb terminal."
is there way change behavior gvim opens separate terminal commands? think recall having work way in past.
you can tell vim run terminal, , run python
in terminal:
:!xterm -e 'python %; read'
read
there let see output of script before exiting terminal.
Comments
Post a Comment