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

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -