diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-04-12 15:09:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-04-12 15:09:51 +0200 |
commit | 0187ca0bdf0d7e5afc5ea80b390dc7e1fc983829 (patch) | |
tree | ab53cd1755d309dd8d0d81c34ba160abf3c13e17 /runtime/doc/insert.txt | |
parent | 38ec50bea8ecb60fa4dd50cfca7c29c98a7a8df0 (diff) | |
download | vim-git-0187ca0bdf0d7e5afc5ea80b390dc7e1fc983829.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 4db43418b..43fedbc89 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1,4 +1,4 @@ -*insert.txt* For Vim version 7.3. Last change: 2013 Jan 09 +*insert.txt* For Vim version 7.3. Last change: 2013 Apr 12 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1869,13 +1869,15 @@ NOTE: These commands cannot be used with |:global| or |:vglobal|. See |++opt| for the possible values of [++opt]. *:r!* *:read!* -:[range]r[ead] !{cmd} Execute {cmd} and insert its standard output below +:[range]r[ead] [++opt] !{cmd} + Execute {cmd} and insert its standard output below the cursor or the specified line. A temporary file is used to store the output of the command which is then read into the buffer. 'shellredir' is used to save the output of the command, which can be set to include stderr or not. {cmd} is executed like with ":!{cmd}", any '!' is replaced with the previous command |:!|. + See |++opt| for the possible values of [++opt]. These commands insert the contents of a file, or the output of a command, into the buffer. They can be undone. They cannot be repeated with the "." |