Redirect ex command to STDOUT in vim

被刻印的时光 ゝ 提交于 2019-12-01 18:40:42

Vim supports outputting to stderr, which we can redirect to stdout to solve your problem. Careful though, this feature is intended only for debugging purposes, so it has a few edges. Here's a short sketch of how you could do this.

First, we will be running Vim in silent or batch mode, which is enabled with the -e -s flags (:h -s-ex). We disable swap files -n because they will be a bother if we need to kill Vim when it gets stuck.

Instead of passing Ex commands as command line arguments we source a script file with -S. Create a file hi.vim with the following contents:

verbose highlight

:verbose is necessary to make Vim output the :highlight message to stderr. Let's see what we have so far:

$ vim -n -e -s -S hi.vim

Don't run this yet or you'll get stuck in the darkness of a headless Vim!

Add a :quit command and redirect stderr to stdout:

$ vim -n -e -s -S hi.vim +quit 2>&1

Voilà! Now pipe this mess into any file or utility at your heart's desire.

There's a very thorough wiki article on this topic, "Vim as a system interpreter for vimscript".


Finer points: Due to how Vim interacts with the terminal environment it can't write proper unix LF line endings in batch mode output. Instead it writes line endings which look like CRLF line endings.

Consider adding a filter to get rid of those:

$ vim -n -e -s -S hi.vim +quit 2>&1 | tr -d '\r' | my-css-util

This answers the general question of how to "Redirect ex command to STDOUT in vim", but it doesn't necessarily work for your :hi problem, because of this constraint caused by the -e -s flags:

'term' and $TERM are not used.

I ran into this by mistake while running your first command. The second time I ran it, it went to stdout. I guess this is because the file already existed. So you can try (sending to something that already exists):

vim +'redir >/dev/null' +'hi' +'redir END' +'q'

If you're working with Unix compatible environment, you can always use a special file, e.g.:

ex +"redir>>/dev/stdout | hi | redir END" -scq!

This will print any Vi/Ex command into standard output which you can parse further.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!