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
- The cursor is only ever on a valid buffer location. This can be the hidden CR of the line, or the 0 at the end.
3
+
- All ASCII for now, no real UTF8
4
+
- The cursor is only ever on a valid buffer location. This can be the hidden CR of the line,
5
+
or the 0 at the end.
5
6
- Even if the loaded buffer doesn't 0 terminate, it is terminated and then removed at save time if necessary.
6
7
- Internally every thing is a '\n'; '\r\n' is converted and converted back if necessary. Mixed files aren't supported, you'll just get a '\n' file
7
8
- The window converts the entire buffer to a list of visible character lines. This is used to handle wrapping, and let the user jump around in a wrapped buffer file.
8
-
- Cursor is on the virtual line in the wrapped buffer, and can be off screen?
9
+
- Cursor is on the virtual line in the wrapped buffer, and can be off screen; but ScrollTo will find it
0 commit comments