mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
vim-patch:8.2.3467: CursorHoldI event interferes with "CTRL-G U"
Problem: CursorHoldI event interferes with "CTRL-G U". (Naohiro Ono)
Solution: Restore the flag for "CTRL-G U" after triggering CursorHoldI.
(closes vim/vim#8937)
5a9357d0bf
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
dfa8b582a6
commit
a5445f5435
@ -878,6 +878,10 @@ static int insert_handle_key(InsertState *s)
|
|||||||
|
|
||||||
case K_EVENT: // some event
|
case K_EVENT: // some event
|
||||||
state_handle_k_event();
|
state_handle_k_event();
|
||||||
|
// If CTRL-G U was used apply it to the next typed key.
|
||||||
|
if (dont_sync_undo == kTrue) {
|
||||||
|
dont_sync_undo = kNone;
|
||||||
|
}
|
||||||
goto check_pum;
|
goto check_pum;
|
||||||
|
|
||||||
case K_COMMAND: // <Cmd>command<CR>
|
case K_COMMAND: // <Cmd>command<CR>
|
||||||
|
@ -104,6 +104,22 @@ if has('timers')
|
|||||||
set updatetime&
|
set updatetime&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_cursorhold_insert_ctrl_g_U()
|
||||||
|
au CursorHoldI * :
|
||||||
|
set updatetime=20
|
||||||
|
new
|
||||||
|
call timer_start(100, { -> feedkeys("\<Left>foo\<Esc>", 't') })
|
||||||
|
call feedkeys("i()\<C-g>U", 'tx!')
|
||||||
|
sleep 200m
|
||||||
|
call assert_equal('(foo)', getline(1))
|
||||||
|
undo
|
||||||
|
call assert_equal('', getline(1))
|
||||||
|
|
||||||
|
bwipe!
|
||||||
|
au! CursorHoldI
|
||||||
|
set updatetime&
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_OptionSet_modeline()
|
func Test_OptionSet_modeline()
|
||||||
CheckFunction test_override
|
CheckFunction test_override
|
||||||
call test_override('starting', 1)
|
call test_override('starting', 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user