forked from aniani/vim
patch 8.1.1351: text property wrong after :substitute
Problem: Text property wrong after :substitute. Solution: Save for undo before changing any text properties.
This commit is contained in:
@@ -441,7 +441,7 @@ set_indent(
|
||||
// the old indent, when decreasing indent it behaves like spaces
|
||||
// were deleted at the new indent.
|
||||
adjust_prop_columns(curwin->w_cursor.lnum,
|
||||
(colnr_T)(added > 0 ? (p - oldline) : ind_len), added);
|
||||
(colnr_T)(added > 0 ? (p - oldline) : ind_len), added, FALSE);
|
||||
}
|
||||
#endif
|
||||
retval = TRUE;
|
||||
|
Reference in New Issue
Block a user