up vote 4 down vote favorite
share [g+] share [fb]

In gVim for windows it's possible to execute current buffer via :!% command. But, unfortunately, the buffer file name is supplied to cmd.exe without quotes, so if file path has spaces gVim will not be able to execute it.

Is it any easy way to fix it in order to be able execute .bat, .py etc from within gVim?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

This's my guess, I don't have windows machine to try. Try

:!python "%"

or

:!"%"

credit: Eye of Hell

link|improve this answer
:!"%" was a success :). Please change your answer for future :) – Eye of Hell Oct 7 '09 at 12:40
feedback

Your Answer

 
or
required, but never shown

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