diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-09-22 15:23:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-09-22 15:23:44 +0200 |
commit | ec11aef914d3f1570c40e9795c145fffaf94edd4 (patch) | |
tree | f230bf2032661da939fe9a1b1308b918d8ed484a /runtime/doc/change.txt | |
parent | 6848c8b561e6c35a3e646c99a82e03c4aa5def92 (diff) | |
download | vim-git-ec11aef914d3f1570c40e9795c145fffaf94edd4.tar.gz |
updated for version 7.4.034v7.4.034
Problem: Using "p" in Visual block mode only changes the first line.
Solution: Repeat the put in all text in the block. (Christian Brabandt)
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r-- | runtime/doc/change.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index 96a9c8b4a..77c791ed5 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1069,6 +1069,11 @@ another register. E.g., yank the text to copy, Visually select the text to replace and use "0p . You can repeat this as many times as you like, the unnamed register will be changed each time. +When you use a blockwise Visual mode command and yank only a single line into +a register, a paste on a visual selected area will paste that single line on +each of the selected lines (thus replacing the blockwise selected region by a +block of the pasted line). + *blockwise-register* If you use a blockwise Visual mode command to get the text into the register, the block of text will be inserted before ("P") or after ("p") the cursor |