comparison src/proto/textprop.pro @ 29621:f1ed6f520d09 v9.0.0151

patch 9.0.0151: a "below" aligned text property does not work with 'nowrap' Commit: https://github.com/vim/vim/commit/4d91d347e65a5621621ea1e3c97dce2c677ed71d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 6 13:48:20 2022 +0100 patch 9.0.0151: a "below" aligned text property does not work with 'nowrap' Problem: A "below" aligned text property does not work with 'nowrap'. Solution: Start a new screen line to display the virtual text. (closes #10851)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Aug 2022 15:00:03 +0200
parents e1c370197030
children bbe62ea78aac
comparison
equal deleted inserted replaced
29620:1e975951ffb7 29621:f1ed6f520d09
2 int find_prop_type_id(char_u *name, buf_T *buf); 2 int find_prop_type_id(char_u *name, buf_T *buf);
3 void f_prop_add(typval_T *argvars, typval_T *rettv); 3 void f_prop_add(typval_T *argvars, typval_T *rettv);
4 void f_prop_add_list(typval_T *argvars, typval_T *rettv); 4 void f_prop_add_list(typval_T *argvars, typval_T *rettv);
5 int prop_add_common(linenr_T start_lnum, colnr_T start_col, dict_T *dict, buf_T *default_buf, typval_T *dict_arg); 5 int prop_add_common(linenr_T start_lnum, colnr_T start_col, dict_T *dict, buf_T *default_buf, typval_T *dict_arg);
6 int get_text_props(buf_T *buf, linenr_T lnum, char_u **props, int will_change); 6 int get_text_props(buf_T *buf, linenr_T lnum, char_u **props, int will_change);
7 int prop_count_below(buf_T *buf, linenr_T lnum);
7 int count_props(linenr_T lnum, int only_starting, int last_line); 8 int count_props(linenr_T lnum, int only_starting, int last_line);
8 int find_visible_prop(win_T *wp, int type_id, int id, textprop_T *prop, linenr_T *found_lnum); 9 int find_visible_prop(win_T *wp, int type_id, int id, textprop_T *prop, linenr_T *found_lnum);
9 void add_text_props(linenr_T lnum, textprop_T *text_props, int text_prop_count); 10 void add_text_props(linenr_T lnum, textprop_T *text_props, int text_prop_count);
10 proptype_T *text_prop_type_by_id(buf_T *buf, int id); 11 proptype_T *text_prop_type_by_id(buf_T *buf, int id);
11 void f_prop_clear(typval_T *argvars, typval_T *rettv); 12 void f_prop_clear(typval_T *argvars, typval_T *rettv);