On Fri, Oct 26, 2012 at 5:49 AM, Gerg <[email protected]> wrote: > Hello everyone. I am new to VIM. > > I would like to write/print my PHP localhost results to *.txt or HTML file. > Is that possible? >
You could capture PHP CLI output: :read !php -r 'phpinfo();' Or from localhost or any other site: read !wget -q -O - http://yoursite.dom/ c -- Chris Lott <[email protected]> -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
