Bram Moolenaar | 3f86ca0 | 2019-05-11 18:30:00 +0200 | [diff] [blame] | 1 | /* change.c */ |
| 2 | void change_warning(int col); |
| 3 | void changed(void); |
| 4 | void changed_internal(void); |
Bram Moolenaar | 6d2399b | 2019-05-11 19:14:16 +0200 | [diff] [blame] | 5 | void f_listener_add(typval_T *argvars, typval_T *rettv); |
Bram Moolenaar | fe1ade0 | 2019-05-14 21:20:36 +0200 | [diff] [blame] | 6 | void f_listener_flush(typval_T *argvars, typval_T *rettv); |
Bram Moolenaar | 6d2399b | 2019-05-11 19:14:16 +0200 | [diff] [blame] | 7 | void f_listener_remove(typval_T *argvars, typval_T *rettv); |
Bram Moolenaar | dda4144 | 2019-05-16 22:11:47 +0200 | [diff] [blame] | 8 | void may_invoke_listeners(buf_T *buf, linenr_T lnum, linenr_T lnume, int added); |
Bram Moolenaar | fe1ade0 | 2019-05-14 21:20:36 +0200 | [diff] [blame] | 9 | void invoke_listeners(buf_T *buf); |
Bram Moolenaar | 3f86ca0 | 2019-05-11 18:30:00 +0200 | [diff] [blame] | 10 | void changed_bytes(linenr_T lnum, colnr_T col); |
| 11 | void inserted_bytes(linenr_T lnum, colnr_T col, int added); |
| 12 | void appended_lines(linenr_T lnum, long count); |
| 13 | void appended_lines_mark(linenr_T lnum, long count); |
| 14 | void deleted_lines(linenr_T lnum, long count); |
| 15 | void deleted_lines_mark(linenr_T lnum, long count); |
| 16 | void changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra); |
| 17 | void unchanged(buf_T *buf, int ff); |
| 18 | void ins_bytes(char_u *p); |
| 19 | void ins_bytes_len(char_u *p, int len); |
| 20 | void ins_char(int c); |
| 21 | void ins_char_bytes(char_u *buf, int charlen); |
| 22 | void ins_str(char_u *s); |
| 23 | int del_char(int fixpos); |
| 24 | int del_chars(long count, int fixpos); |
| 25 | int del_bytes(long count, int fixpos_arg, int use_delcombine); |
| 26 | int open_line(int dir, int flags, int second_line_indent); |
| 27 | int truncate_line(int fixpos); |
| 28 | void del_lines(long nlines, int undo); |
| 29 | /* vim: set ft=c : */ |