summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-12-12 17:33:32 +0100
committerBram Moolenaar <Bram@vim.org>2012-12-12 17:33:32 +0100
commit83dadafdd7967ba2d57b343e24119d6ff17b190c (patch)
tree19cf9aaed92636cc94ae66c40af6f7f130e33942 /src/normal.c
parent4b166d0a6d06f9a8f2d6f7f3beb5e1edb9a4783c (diff)
downloadvim-git-83dadafdd7967ba2d57b343e24119d6ff17b190c.tar.gz
updated for version 7.3.760v7.3.760
Problem: dv_ deletes the white space before the line. Solution: Move the cursor to the first non-white. (Christian Brabandt)
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index d6773697a..869ada37a 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -8628,7 +8628,9 @@ nv_lineop(cap)
cap->oap->motion_type = MLINE;
if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
clearopbeep(cap->oap);
- else if ( cap->oap->op_type == OP_DELETE
+ else if ( (cap->oap->op_type == OP_DELETE /* only with linewise motions */
+ && cap->oap->motion_force != 'v'
+ && cap->oap->motion_force != Ctrl_V)
|| cap->oap->op_type == OP_LSHIFT
|| cap->oap->op_type == OP_RSHIFT)
beginline(BL_SOL | BL_FIX);