comparison src/normal.c @ 24800:b032da736676 v8.2.2938

patch 8.2.2938: after using motion force from feedkeys() it sticks Commit: https://github.com/vim/vim/commit/21492743e80c6740bac65a91311c28bede8ef2f8 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 4 21:57:57 2021 +0200 patch 8.2.2938: after using motion force from feedkeys() it sticks Problem: After using motion force from feedkeys() it may not be reset. Solution: Clear motion_force in clearop(). (closes https://github.com/vim/vim/issues/8323)
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Jun 2021 22:00:05 +0200
parents b36ceac30454
children f1121eb17e14
comparison
equal deleted inserted replaced
24799:7aa2abb13864 24800:b032da736676
1748 { 1748 {
1749 oap->op_type = OP_NOP; 1749 oap->op_type = OP_NOP;
1750 oap->regname = 0; 1750 oap->regname = 0;
1751 oap->motion_force = NUL; 1751 oap->motion_force = NUL;
1752 oap->use_reg_one = FALSE; 1752 oap->use_reg_one = FALSE;
1753 motion_force = NUL;
1753 } 1754 }
1754 1755
1755 void 1756 void
1756 clearopbeep(oparg_T *oap) 1757 clearopbeep(oparg_T *oap)
1757 { 1758 {