Mercurial > vim
comparison src/proto/textprop.pro @ 15138:9df130fd5e0d v8.1.0579
patch 8.1.0579: cannot attach properties to text
commit https://github.com/vim/vim/commit/98aefe7c3250bb5d4153b994f878594d1745424e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 13 22:20:09 2018 +0100
patch 8.1.0579: cannot attach properties to text
Problem: Cannot attach properties to text.
Solution: First part of adding text properties.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 13 Dec 2018 22:30:08 +0100 |
parents | |
children | 19e79a1ed6b6 |
comparison
equal
deleted
inserted
replaced
15137:44f47a35a3f4 | 15138:9df130fd5e0d |
---|---|
1 /* textprop.c */ | |
2 void f_prop_add(typval_T *argvars, typval_T *rettv); | |
3 int has_any_text_properties(buf_T *buf); | |
4 int get_text_props(buf_T *buf, linenr_T lnum, char_u **props, int will_change); | |
5 proptype_T *text_prop_type_by_id(buf_T *buf, int id); | |
6 void f_prop_clear(typval_T *argvars, typval_T *rettv); | |
7 void f_prop_list(typval_T *argvars, typval_T *rettv); | |
8 void f_prop_remove(typval_T *argvars, typval_T *rettv); | |
9 void prop_type_set(typval_T *argvars, int add); | |
10 void f_prop_type_add(typval_T *argvars, typval_T *rettv); | |
11 void f_prop_type_change(typval_T *argvars, typval_T *rettv); | |
12 void f_prop_type_delete(typval_T *argvars, typval_T *rettv); | |
13 void f_prop_type_get(typval_T *argvars, typval_T *rettv); | |
14 void f_prop_type_list(typval_T *argvars, typval_T *rettv); | |
15 void clear_global_prop_types(void); | |
16 void clear_buf_prop_types(buf_T *buf); | |
17 /* vim: set ft=c : */ |