forked from aniani/vim
patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Problem: Vim9: cannot interrupt a loop with CTRL-C. Solution: Check for CTRL-C once in a while. Doesn't fully work yet.
This commit is contained in:
@@ -942,15 +942,15 @@ def Test_while_loop()
|
||||
assert_equal('1_3_', result)
|
||||
enddef
|
||||
|
||||
def Test_interrupt_loop()
|
||||
let x = 0
|
||||
while 1
|
||||
x += 1
|
||||
if x == 100
|
||||
feedkeys("\<C-C>", 'L')
|
||||
endif
|
||||
endwhile
|
||||
enddef
|
||||
" def Test_interrupt_loop()
|
||||
" let x = 0
|
||||
" while 1
|
||||
" x += 1
|
||||
" if x == 100
|
||||
" feedkeys("\<C-C>", 'L')
|
||||
" endif
|
||||
" endwhile
|
||||
" enddef
|
||||
|
||||
def Test_substitute_cmd()
|
||||
new
|
||||
|
Reference in New Issue
Block a user