This website requires JavaScript.
Explore
Help
Register
Sign In
humza
/
sml-projects
Watch
1
Star
0
Fork
0
You've already forked sml-projects
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
2df8f88452f0a3ae8644328c34910673fcbdd9a7
sml-projects
/
fcore
History
Humza Shahid
2df8f88452
improvements to TextWindow.isCursorVisible (no need to do binary search; in fact, that leads to an exception, because we are meant to use Vector.sub to access the relative line instead)
2024-11-02 12:54:34 +00:00
..
app-type.sml
add mode type to app type (equivalent of vi's normal mode, visual mode, insert mode, etc.)
2024-10-26 04:46:05 +01:00
app-update.sml
when pressing fcore/text-window.sml to match pair, only recentre text window if matching pair is not currently visible on screen
2024-11-02 12:34:23 +00:00
app-with.sml
have functionality for cursor to scroll down a line when cursor moves down one line working, but it only seems to work perfectly when there are no visual line breaks
2024-10-28 21:56:07 +00:00
cursor.sml
fix minor bug in cursor.sml (we checked if strPos is equal to 'String.size str - 1' but then accessed strPos + 1, which makes our bound check useless and may cause an exception. Instead, check 'strPos < String.size str - 1'
2024-11-01 03:35:12 +00:00
text-builder.sml
have functionality for cursor to scroll down a line when cursor moves down one line working, but it only seems to work perfectly when there are no visual line breaks
2024-10-28 21:56:07 +00:00
text-constants.sml
begin moving text window when cursor goes off screen (currently, we only move the window when cursor goes backwards but this works fine and as expected)
2024-10-28 09:34:55 +00:00
text-window.sml
improvements to TextWindow.isCursorVisible (no need to do binary search; in fact, that leads to an exception, because we are meant to use Vector.sub to access the relative line instead)
2024-11-02 12:54:34 +00:00