annotate src/proto/textprop.pro @ 29609:e1c370197030 v9.0.0145

patch 9.0.0145: substitute that joins lines drops text properties Commit: https://github.com/vim/vim/commit/213bbaf15afc628e5f83d1ae6526631ca8292292 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 5 19:46:48 2022 +0100 patch 9.0.0145: substitute that joins lines drops text properties Problem: Substitute that joins lines drops text properties. Solution: Move text properties of the last line to the new line.
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Aug 2022 21:00:03 +0200
parents e357bc89bb95
children f1ed6f520d09
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 /* textprop.c */
17863
08f1dd29550e patch 8.1.1928: popup windows don't move with the text when making changes
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2 int find_prop_type_id(char_u *name, buf_T *buf);
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 void f_prop_add(typval_T *argvars, typval_T *rettv);
25640
78ef12e0ce8c patch 8.2.3356: adding many text properties requires a lot of function calls
Bram Moolenaar <Bram@vim.org>
parents: 20583
diff changeset
4 void f_prop_add_list(typval_T *argvars, typval_T *rettv);
29451
057c26b5c33a patch 9.0.0067: cannot show virtual text
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
5 int prop_add_common(linenr_T start_lnum, colnr_T start_col, dict_T *dict, buf_T *default_buf, typval_T *dict_arg);
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 int get_text_props(buf_T *buf, linenr_T lnum, char_u **props, int will_change);
29585
e357bc89bb95 patch 9.0.0133: virtual text after line moves to joined line
Bram Moolenaar <Bram@vim.org>
parents: 29451
diff changeset
7 int count_props(linenr_T lnum, int only_starting, int last_line);
17863
08f1dd29550e patch 8.1.1928: popup windows don't move with the text when making changes
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
8 int find_visible_prop(win_T *wp, int type_id, int id, textprop_T *prop, linenr_T *found_lnum);
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29585
diff changeset
9 void add_text_props(linenr_T lnum, textprop_T *text_props, int text_prop_count);
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 proptype_T *text_prop_type_by_id(buf_T *buf, int id);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 void f_prop_clear(typval_T *argvars, typval_T *rettv);
19100
91bb12995034 patch 8.2.0110: prop_find() is not implemented
Bram Moolenaar <Bram@vim.org>
parents: 17863
diff changeset
12 void f_prop_find(typval_T *argvars, typval_T *rettv);
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 void f_prop_list(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 void f_prop_remove(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 void f_prop_type_add(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 void f_prop_type_change(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 void f_prop_type_delete(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 void f_prop_type_get(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 void f_prop_type_list(typval_T *argvars, typval_T *rettv);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 void clear_global_prop_types(void);
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 void clear_buf_prop_types(buf_T *buf);
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16698
diff changeset
22 int adjust_prop_columns(linenr_T lnum, colnr_T col, int bytes_added, int flags);
16662
1fc9cd08cf3c patch 8.1.1333: text properties don't always move after changes
Bram Moolenaar <Bram@vim.org>
parents: 15367
diff changeset
23 void adjust_props_for_split(linenr_T lnum_props, linenr_T lnum_top, int kept, int deleted);
29585
e357bc89bb95 patch 9.0.0133: virtual text after line moves to joined line
Bram Moolenaar <Bram@vim.org>
parents: 29451
diff changeset
24 void prepend_joined_props(char_u *new_props, int propcount, int *props_remaining, linenr_T lnum, int last_line, long col, int removed);
15138
9df130fd5e0d patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 /* vim: set ft=c : */