diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-19 22:53:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-19 22:53:40 +0200 |
commit | f3333b02f34526da46cdae608f7e2d869bb8c654 (patch) | |
tree | be05ce3393cee6644f8755f59dcdf4b3694dbc33 /src/ops.c | |
parent | 386b43e59498cc7b52a60f09f74bdb44df99386c (diff) | |
download | vim-git-f3333b02f34526da46cdae608f7e2d869bb8c654.tar.gz |
patch 8.1.1359: text property wrong after :substitute with backslashv8.1.1359
Problem: Text property wrong after :substitute with backslash.
Solution: Adjust text property columns when removing backslashes.
(closes #4397)
Diffstat (limited to 'src/ops.c')
-rw-r--r-- | src/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1937,7 +1937,7 @@ op_delete(oparg_T *oap) #ifdef FEAT_TEXT_PROP if (curbuf->b_has_textprop && n != 0) - adjust_prop_columns(lnum, bd.textcol, -n, FALSE); + adjust_prop_columns(lnum, bd.textcol, -n, 0); #endif } |