diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-11-22 14:16:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-11-22 14:16:08 +0000 |
commit | 2228cd72cf7c6f326e4e41179e88d37595ca4abc (patch) | |
tree | 22f89d7522a93d3cc7fcf58720811b07da23f023 /src/proto | |
parent | a3f83feb63eae5464a620ae793c002eb45f7a838 (diff) | |
download | vim-git-2228cd72cf7c6f326e4e41179e88d37595ca4abc.tar.gz |
patch 8.2.3644: count for 'operatorfunc' in Visual mode is not redonev8.2.3644
Problem: Count for 'operatorfunc' in Visual mode is not redone.
Solution: Add the count to the redo buffer. (closes #9174)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/normal.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/normal.pro b/src/proto/normal.pro index 30f360b93..ad0e95ab5 100644 --- a/src/proto/normal.pro +++ b/src/proto/normal.pro @@ -10,6 +10,7 @@ void restore_visual_mode(void); int find_ident_under_cursor(char_u **text, int find_type); int find_ident_at_pos(win_T *wp, linenr_T lnum, colnr_T startcol, char_u **text, int *textcol, int find_type); void prep_redo(int regname, long num, int cmd1, int cmd2, int cmd3, int cmd4, int cmd5); +void prep_redo_num2(int regname, long num1, int cmd1, int cmd2, long num2, int cmd3, int cmd4, int cmd5); void clearop(oparg_T *oap); void clearopbeep(oparg_T *oap); void may_clear_cmdline(void); |