[X] I have updated the plugin to the latest version before submitting this issue
[X] I have searched the existing issues of noice.nvim
[X] I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.10.1 (github release)
Operating system/version
Arch Linux
Describe the bug
When using the cmdline view which moves the command line back down to the classic position it doesn't function correctly for long lines. If the typed command exceeds the width of the editor then it doesn't scroll so you can still see what you are typing. You are left only looking at what was already typed and you are simply off screen.
I tried to work around this for now by disabling the cmdline integration doing cmdline = { enabled = false } and this actually just left me with no cmdline at all. I'm not sure if that's intended or also a bug.
Steps To Reproduce
nvim -u repro.lua, open the editor
:, go to the cmdline which is at the bottom
Type stuff longer than the width of the editor window and see that once you hit the width you can no longer see what is typing, you can only see the beginning that was already typed leaving you blind
Expected Behavior
The text should scroll over to be able to see what the user is typing and moving the cursor left and right should let them move back to the beginning if they need it. Similar to the out of the box cmdline behavior
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.10.1 (github release)
Operating system/version
Arch Linux
Describe the bug
When using the
cmdline
view which moves the command line back down to the classic position it doesn't function correctly for long lines. If the typed command exceeds the width of the editor then it doesn't scroll so you can still see what you are typing. You are left only looking at what was already typed and you are simply off screen.I tried to work around this for now by disabling the
cmdline
integration doingcmdline = { enabled = false }
and this actually just left me with no cmdline at all. I'm not sure if that's intended or also a bug.Steps To Reproduce
nvim -u repro.lua
, open the editor:
, go to the cmdline which is at the bottomExpected Behavior
The text should scroll over to be able to see what the user is typing and moving the cursor left and right should let them move back to the beginning if they need it. Similar to the out of the box
cmdline
behaviorRepro