0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.883

Problem:    Block-mode replace works characterwise instead of blockwise after
            column 147. (Issue #422)
Solution:   Set Visual mode. (Christian Brabandt)
This commit is contained in:
Bram Moolenaar
2015-09-25 19:35:02 +02:00
parent 5f1fea28f5
commit 10ad1d90da
4 changed files with 10 additions and 1 deletions

View File

@@ -9596,7 +9596,7 @@ get_op_vcol(oap, redo_VIsual_vcol, initial)
|| (!initial && oap->end.col < W_WIDTH(curwin)))
return;
oap->block_mode = VIsual_active;
oap->block_mode = TRUE;
#ifdef FEAT_MBYTE
/* prevent from moving onto a trail byte */