diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-04 23:09:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-04 23:09:49 +0100 |
commit | 4164bb204e97a2ff3d6c43cba779bdff9e853892 (patch) | |
tree | 133f8b60bbd378847ac6832630b3b9a238774214 /src/proto/textprop.pro | |
parent | 21b5038e02306ce2fd438249055eed372befe51f (diff) | |
download | vim-git-4164bb204e97a2ff3d6c43cba779bdff9e853892.tar.gz |
patch 8.1.0691: text properties are not adjusted for :substitutev8.1.0691
Problem: Text properties are not adjusted for :substitute.
Solution: Adjust text properties as well as possible.
Diffstat (limited to 'src/proto/textprop.pro')
-rw-r--r-- | src/proto/textprop.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/textprop.pro b/src/proto/textprop.pro index 5a648c498..0eac557e3 100644 --- a/src/proto/textprop.pro +++ b/src/proto/textprop.pro @@ -14,4 +14,5 @@ void f_prop_type_list(typval_T *argvars, typval_T *rettv); void clear_global_prop_types(void); void clear_buf_prop_types(buf_T *buf); void adjust_prop_columns(linenr_T lnum, colnr_T col, int bytes_added); +void adjust_props_for_split(linenr_T lnum, int kept, int deleted); /* vim: set ft=c : */ |