Theo Lemay

Results 248 comments of Theo Lemay

Came here to suggest this but you got here first!

Thank you so much for continuing to work on this!! I've found a few issues with the WIP, but I'm sure you are aware and are continuing to work at...

@zbw8388 these updates look very promising! It's too bad about the folding, but I think for now its a feature that we can't support. Btw, have you seen #502? Also,...

I've found that increasing the 20ms delay to 100ms **almost** fixes the problem for me. Perhaps this is a workaround that can be removed? Edit: With a timeout of 200ms,...

Thanks for all the great info! Yeah, that is a bit dumb. Unfortunately, there is still a bit of trouble with smooth scrolling w/ two-way (occasional jitter, although correct end...

That seems to fix the issue with C-u/C-d! I'm still running into the momentum clamping with mouse scroll, but it is better. Sounds good about the release!

It's much better now! Unfortunately, I still experience the jitter when scrolling (slowly) with C-u/C-d about 1/30 times, and mouse scrolling is still broken. What if we were to debounce...

Applying the following diff to `f446bcb52ce55957108ae9f63318a9d495045a39` seems to make things work much better for me: ```diff diff --git a/src/viewport_manager.ts b/src/viewport_manager.ts index e3a287c..22e1f8f 100644 --- a/src/viewport_manager.ts +++ b/src/viewport_manager.ts @@ -1,3 +1,4...

Another bug that needs to be fixed: it seems like the viewport does not scroll to show search matches.

> Ah have you get a chance to try [6757f39](https://github.com/vscode-neovim/vscode-neovim/pull/993/commits/6757f39ee12e7fc6850d8dcb91a759fbc8e31052)? I increased the timeout, which is somewhat similar to debounce, except it starts the timer right after the first firing...