You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 2, 2025. It is now read-only.
By using a command, such as :wrap or :linewrap, we'd split lines exceeding the terminal width over multiple terminal lines.
This will probably be complex, as it'll have an impact on line numbering, the go_to_x_y mechanism, etc, so we'd need to find a lightweight solution to compute a document coordinate / terminal coordinate mapping, instead of re-computing it everytime, which would make every coordinate jump O(n).
By using a command, such as
:wrapor:linewrap, we'd split lines exceeding the terminal width over multiple terminal lines.This will probably be complex, as it'll have an impact on line numbering, the
go_to_x_ymechanism, etc, so we'd need to find a lightweight solution to compute a document coordinate / terminal coordinate mapping, instead of re-computing it everytime, which would make every coordinate jump O(n).