comparison src/proto/change.pro @ 22282:5adb97bf0b32 v8.2.1690

patch 8.2.1690: text properties not adjusted for "I" in Visual block mode Commit: https://github.com/vim/vim/commit/8b51b7f0f17af149a8ce76e805050977857f9e50 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 15 21:34:18 2020 +0200 patch 8.2.1690: text properties not adjusted for "I" in Visual block mode Problem: Text properties not adjusted for "I" in Visual block mode. Solution: Call inserted_bytes().
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Sep 2020 21:45:04 +0200
parents fd95d4dbeb37
children 09e64e81c473
comparison
equal deleted inserted replaced
22281:7509c66a371a 22282:5adb97bf0b32
7 void f_listener_remove(typval_T *argvars, typval_T *rettv); 7 void f_listener_remove(typval_T *argvars, typval_T *rettv);
8 void may_invoke_listeners(buf_T *buf, linenr_T lnum, linenr_T lnume, int added); 8 void may_invoke_listeners(buf_T *buf, linenr_T lnum, linenr_T lnume, int added);
9 void invoke_listeners(buf_T *buf); 9 void invoke_listeners(buf_T *buf);
10 void remove_listeners(buf_T *buf); 10 void remove_listeners(buf_T *buf);
11 void changed_bytes(linenr_T lnum, colnr_T col); 11 void changed_bytes(linenr_T lnum, colnr_T col);
12 void inserted_bytes(linenr_T lnum, colnr_T col, int added);
12 void appended_lines(linenr_T lnum, long count); 13 void appended_lines(linenr_T lnum, long count);
13 void appended_lines_mark(linenr_T lnum, long count); 14 void appended_lines_mark(linenr_T lnum, long count);
14 void deleted_lines(linenr_T lnum, long count); 15 void deleted_lines(linenr_T lnum, long count);
15 void deleted_lines_mark(linenr_T lnum, long count); 16 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 changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra);