aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-23 04:43:44 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-23 10:00:53 -0400
commitd677ae5f6461dcd78f08caec2c4fa72e6e275137 (patch)
tree939b783497deef4f314f008f7c593285672f02a9 /runtime
parentfe57a8a4e410e19f05a4137709632ee375b1c2aa (diff)
downloadrneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.tar.gz
rneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.tar.bz2
rneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.zip
vim-patch:8.0.1041: bogus characters when indenting during visual-block append
Problem: Bogus characters appear when indenting kicks in while doing a visual-block append. Solution: Recompute when indenting is done. (Christian Brabandt) https://github.com/vim/vim/commit/e2e69e48134cbfdedea7802810932f8592705024
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/visual.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt
index 176ce562d8..a9eb21192e 100644
--- a/runtime/doc/visual.txt
+++ b/runtime/doc/visual.txt
@@ -302,8 +302,8 @@ Visual-block Insert *v_b_I*
With a blockwise selection, I{string}<ESC> will insert {string} at the start
of block on every line of the block, provided that the line extends into the
block. Thus lines that are short will remain unmodified. TABs are split to
-retain visual columns.
-See |v_b_I_example|.
+retain visual columns. Works only for adding text to a line, not for
+deletions. See |v_b_I_example|.
Visual-block Append *v_b_A*
With a blockwise selection, A{string}<ESC> will append {string} to the end of
@@ -319,6 +319,7 @@ See |v_b_A_example|.
Note: "I" and "A" behave differently for lines that don't extend into the
selected block. This was done intentionally, so that you can do it the way
you want.
+Works only for adding text to a line, not for deletions.
Visual-block change *v_b_c*
All selected text in the block will be replaced by the same text string. When