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); |
| 5 | void changed_bytes(linenr_T lnum, colnr_T col); |
| 6 | void inserted_bytes(linenr_T lnum, colnr_T col, int added); |
| 7 | void appended_lines(linenr_T lnum, long count); |
| 8 | void appended_lines_mark(linenr_T lnum, long count); |
| 9 | void deleted_lines(linenr_T lnum, long count); |
| 10 | void deleted_lines_mark(linenr_T lnum, long count); |
| 11 | void changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra); |
| 12 | void unchanged(buf_T *buf, int ff); |
| 13 | void ins_bytes(char_u *p); |
| 14 | void ins_bytes_len(char_u *p, int len); |
| 15 | void ins_char(int c); |
| 16 | void ins_char_bytes(char_u *buf, int charlen); |
| 17 | void ins_str(char_u *s); |
| 18 | int del_char(int fixpos); |
| 19 | int del_chars(long count, int fixpos); |
| 20 | int del_bytes(long count, int fixpos_arg, int use_delcombine); |
| 21 | int open_line(int dir, int flags, int second_line_indent); |
| 22 | int truncate_line(int fixpos); |
| 23 | void del_lines(long nlines, int undo); |
| 24 | /* vim: set ft=c : */ |