How to write buffer content to stdout?

后端 未结 9 1714
执笔经年
执笔经年 2020-12-09 01:54

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

相关标签:
9条回答
  • 2020-12-09 02:15

    Using :print will write to stdout, particularly if vim is run with both the -E and -s options, which cause it to run noninteractively and silently. See :h -E and :h -s-ex:

    The output of these commands is displayed (to stdout):
                            :print                          
                            :list
                            :number
                            :set      to display option values."
    

    Use :%print to print the whole current buffer.

    0 讨论(0)
  • 2020-12-09 02:15

    Try something like:

    { FROMCMD | vim - 8>&1 >&9 | tac | tac | TOCMD; } 9>&1
    

    and use ':w !cat >&8' when you are finished editing

    'tac | tac' ensures that TOCMD doesn't receive any data until you quite vim, this is only useful if TOCMD writes to the terminal so that it doesn't make a mess while vim is still running.

    Notice that running 'less' as your TOCMD (or any other program that do some terminal manipulation) is not going to work as expected because even if you delay the data, the processes still start "at the same time" and may access the terminal at the same time.

    0 讨论(0)
  • 2020-12-09 02:22

    vim can be used in pipes as full-featured filter with explicit names for stdin and stdout as in following example:

    echo xxx                                             |
    vim                                                  \
      -esnN -i NONE                                      \
       +'1 s /x/y/g | 1 s /^/Hallo / | x! /dev/stdout'   \
       /dev/stdin                                        |
    cat -n
    

    Abbreviating /dev/stdin with - won't work, even not with -v flag.

    0 讨论(0)
  • 2020-12-09 02:26

    Reading from stdin:

    echo "hey" | vim  -
    

    When you :w you'd still have to give it a filename.

    Programs that use vim as their EDITOR, like crontab -e pass it a filename so that user can just :x and not worry about filenames.

    EDIT

    You could also do something like this:

    mkfifo /tmp/some_pipe
    echo "hey" > /tmp/some_pipe ; cat /tmp/some_pipe
    

    And from another process (or terminal)

    vim /tmp/some_pipe
    

    Beware that writing to a pipe will block until something reads from it, and reading will block untill something writes to it, so it might be safer to use regular files.

    0 讨论(0)
  • 2020-12-09 02:27

    To print buffer to shell standard output, vim needs to start in Ex mode, otherwise it'll open the "normal" way with its own window and clear any output buffers on quit.

    Here is the simplest working example:

    $ echo foo | vim -es '+%print' '+:q!' /dev/stdin
    foo
    

    The special file descriptor to standard input needs to be specified (/dev/stdin) in order to prevent extra annoying messages.

    And here are some string parsing examples:

    $ echo This is example. | vim -es '+s/example/test/g' '+%print' '+:q!' /dev/stdin
    This is test.
    $ echo This is example. | vim - -es '+s/example/test/g' '+%print' '+:q!'
    Vim: Reading from stdin...
    This is test.
    

    Here is a simple example using ex which is equivalent to vi -e:

    ex -s +%p -cq /etc/hosts
    

    Related:

    • How to edit files non-interactively (e.g. in pipeline)? at Vim SE
    • Pipe Vim buffer to stdout at stackoverflow
    0 讨论(0)
  • 2020-12-09 02:29

    You can use the ex-mode (p)rint command to print any set of lines you want to stdout.

    print all lines:

    :1,$p
    

    Also prints all lines (% is a shorthand for the range 1,$)

    :%p
    

    print lines 4-10:

    :4,10p
    

    print next line containing FOO

    /FOO/ p
    

    print all lines containing FOO

    g/FOO/ p
    
    0 讨论(0)
提交回复
热议问题