Daniel Steinberg
Daniel Steinberg
> "Isn't this more of a core issue? nvim-lspconfig is just configuration." I just opened https://github.com/neovim/neovim/issues/20250.
As of 01fbd97597b33ece9700c178cdde52268cb6f2bc, there's a new scrollview mode, `proper`, that accounts for wrapped lines. By default, the scrollview mode is set to `auto`, which will account for wrapped lines only...
Thanks for the ideas @DanielCardonaRojas and @Asheq. @DanielCardonaRojas, the functionality you proposed is now offered as an experimental feature. It can be enabled by setting `g:scrollview_include_end_region` to `v:true`. @Asheq, the...
> "did you find a solution?" I thought this question might be directed towards me, as I created the ticket. I haven't faced the problem myself, as I use Vim...
`git bisect` shows that this started at one of the following commits: - 2448816 - 43e8ec9 I had to skip checking the first due to the following build error: ```...
I reported a similar issue in https://github.com/neovim/neovim/issues/24584. In order to replicate the issue reported here, I had to first perform two additional steps: 1. Change the terminal background color to...
Hi @MikeLemo1, can you provide steps to reproduce the issue? Is this for ordinary scrolling with the keyboard? If so, which keys are you pressing? Or is this for scrolling...
As of e1e3237e22d833e814fa8253574c070832456e65, cursor position is retained while dragging. I tried to implement cursor positioning in a manner similar to what happens with mouse wheel scrolling, but I was unable...
> "Additionally, there is an issue when the cursor ends on a line with concealed text from syntax highlighting, resulting in the cursor being incorrectly positioned left of where it...
Hi @OneOfOne. Thanks for reporting the issue. Is the Vim option `mousemoveevent` set? ```vim :set mousemoveevent? ``` I just added a few optimizations (38dd65977432ab1f3b1b706a4198216e5d168c50, 0f286e8c97c46e8c854651ad1851550cd654ede8, e8befc94ea66194700495d2f71419ba112634b0b). Is the problem resolved?