commit | f3333b02f34526da46cdae608f7e2d869bb8c654 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun May 19 22:53:40 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun May 19 22:53:40 2019 +0200 |
tree | be05ce3393cee6644f8755f59dcdf4b3694dbc33 | |
parent | 386b43e59498cc7b52a60f09f74bdb44df99386c [diff] [blame] |
patch 8.1.1359: text property wrong after :substitute with backslash Problem: Text property wrong after :substitute with backslash. Solution: Adjust text property columns when removing backslashes. (closes #4397)
diff --git a/src/ops.c b/src/ops.c index a989ce2..4d26924 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -1937,7 +1937,7 @@ #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 }