Sunday, June 2, 2013

Re: How to echo to stdout?

On Sunday, June 2, 2013 11:29:04 PM UTC+12, Peng Yu wrote:
> That is not what I'm looking for. I need to somehow redirect that
> output that is not to stdout to stdout.
>
> For example, I want to see the output of "set filetype" on stdout.

How about:

$ cat main.vimrc
redir! > /tmp/main.out
echo "hello"
set ft?
echo ""
redir END
q
$ vim -S main.vimrc
$ cat /tmp/main.out

Regards, John Little

--
--
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

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: