comparison src/proto/textprop.pro @ 30261:6b658ef69e93 v9.0.0466

patch 9.0.0466: virtual text wrong after adding line break after line Commit: https://github.com/vim/vim/commit/ebd0e8bb853cb744b60bf4f57011c4379ae4aaed Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 14 22:13:59 2022 +0100 patch 9.0.0466: virtual text wrong after adding line break after line Problem: Virtual text wrong after adding line break after line. Solution: Pass an "eol" flag to where text properties are adjusted. (closes #11131)
author Bram Moolenaar <Bram@vim.org>
date Wed, 14 Sep 2022 23:15:03 +0200
parents 0d084880276a
children 243c35fad9cb
comparison
equal deleted inserted replaced
30260:742a12140d60 30261:6b658ef69e93
20 void f_prop_type_get(typval_T *argvars, typval_T *rettv); 20 void f_prop_type_get(typval_T *argvars, typval_T *rettv);
21 void f_prop_type_list(typval_T *argvars, typval_T *rettv); 21 void f_prop_type_list(typval_T *argvars, typval_T *rettv);
22 void clear_global_prop_types(void); 22 void clear_global_prop_types(void);
23 void clear_buf_prop_types(buf_T *buf); 23 void clear_buf_prop_types(buf_T *buf);
24 int adjust_prop_columns(linenr_T lnum, colnr_T col, int bytes_added, int flags); 24 int adjust_prop_columns(linenr_T lnum, colnr_T col, int bytes_added, int flags);
25 void adjust_props_for_split(linenr_T lnum_props, linenr_T lnum_top, int kept, int deleted); 25 void adjust_props_for_split(linenr_T lnum_props, linenr_T lnum_top, int kept, int deleted, int at_eol);
26 void prepend_joined_props(char_u *new_props, int propcount, int *props_remaining, linenr_T lnum, int last_line, long col, int removed); 26 void prepend_joined_props(char_u *new_props, int propcount, int *props_remaining, linenr_T lnum, int last_line, long col, int removed);
27 /* vim: set ft=c : */ 27 /* vim: set ft=c : */