Re: how to execute Python in VIM

2005-03-07 Thread DENG
thanks Aaron i've changed that, but this time, even worse... when i press F5, the pop-up windows appears, and then, it disppears very quickly...(less than 1 second) i cant see anything~ :( -- http://mail.python.org/mailman/listinfo/python-list

Re: how to execute Python in VIM

2005-03-06 Thread [EMAIL PROTECTED]
> > map :!d:\python24\python.exe % > > > > > > but it comes with a new pop-up windowsdame~ > > I'm no windows expert - but maybe pythonw.exe helps here? I find that using pythonw.exe and the silent prefix in Vim works best for me: map :silent !pythonw.exe % Regards, Aaron -- http://

Re: how to execute Python in VIM

2005-03-05 Thread Diez B. Roggisch
DENG wrote: > ok > > i find it > > map :!d:\python24\python.exe % > > > but it comes with a new pop-up windowsdame~ I'm no windows expert - but maybe pythonw.exe helps here? -- Regards, Diez B. Roggisch -- http://mail.python.org/mailman/listinfo/python-list

Re: how to execute Python in VIM

2005-03-05 Thread DENG
ok i find it map :!d:\python24\python.exe % but it comes with a new pop-up windowsdame~ -- http://mail.python.org/mailman/listinfo/python-list

Re: how to execute Python in VIM

2005-03-05 Thread DENG
i change the path autocmd FileType python setlocal makeprg=\"d:\\Python24\\python.exe\"\ autocmd BufNewFile,BufRead test*.py setlocal makeprg=\"d:\\Python24\\python.exe\"\ % -- http://mail.python.org/mailman/listinfo/python-list