bug: Keys are not showed during vim.fn.input()
when called from Visual mode
#347
Closed
3 tasks done
Labels
bug
Something isn't working
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.9.0-dev-857+g2c5906b55
Operating system/version
EndeavourOS Linux x86_64 (6.1.8-arch1-1)
Describe the bug
When
vim.fn.input()
is called during Visual mode, it doesn't show user's pressed keys while still processing them correctly.Steps To Reproduce
<M-x>
. Typeabcd
. It doesn't appear in popup window.Press
<CR>
. All key presses do appear for a brief moment.Type
:lua print(_G.input_result)
. It should showabcd
, as expected.<M-f>
. Typeefgh
. The result is the same with updated value of_G.input_result
.<M-n>
. Typeijkl
. It does appear in popup window and value of_G.input_result
is updated.Expected Behavior
Any user's key press should immediately be shown in popup window (as when in command line without 'noice.nvim').
Repro
The text was updated successfully, but these errors were encountered: