this post was submitted on 21 Feb 2024
-12 points (35.0% liked)

Programming

16318 readers
705 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ruffsl@programming.dev 1 points 4 months ago (1 children)

Do you use it combined with terminal emulators?
Wouldn't that result in vertical scroll snapping to textual lines, and horizontal scroll snapping to character widths?
A personal preference I suppose for navigation, but a bit jumpy to read from while moving rapidly.

[–] milo128@lemm.ee 3 points 4 months ago (1 children)

the whole point is that its not in a terminal. its a gui frontend.

[–] ruffsl@programming.dev 1 points 4 months ago (2 children)

I was more curious about horizontal/vertical scroll snapping of text, given if the underlying vim properties are still limited to terminal style rendering of whole fractions of text lines and fixed characters, then it's less of a concern what exactly the GUI front end is.

[–] mac@infosec.pub 2 points 4 months ago

It explains most of this on the features page of the site.

It's pretty snappy even on lower spec machines. I didn't notice any issues with scroll snapping.

[–] hallettj@beehaw.org 2 points 4 months ago (1 children)

It scrolls smoothly, it doesn't snap line by line. Although once the scroll animation is complete the final positions of lines and columns do end up aligned to a grid.

Neovim (as opposed to Vim) is not limited to terminal rendering. It's designed to be a UI-agnostic backend. It happens that the default frontend runs in a terminal.

[–] ruffsl@programming.dev 2 points 4 months ago

Nice! Thanks for the clarification.