Is there any chance to write the content of the current vim buffer to stdout?
I'd like to use vim to edit content that was passed via stdin - without the need of a temporary file to retrieve the modified content (on Linux/Unix).
Is it possible that a plugin/script - that act on quit or save put the buffer content to stdout?
:w! /dev/stdout"works" on linux where "works" means "but the line discipline is raw so it doesn't really work". - msw