remove a couple of unneded functions

This commit is contained in:
2025-08-03 14:32:44 +01:00
parent ff9d61bba0
commit 9662540889
2 changed files with 2 additions and 17 deletions

View File

@@ -733,17 +733,6 @@ struct
(* equivalent of vi's `E` command *)
val endOfWORD = ViWORDDfa.endOfCurrentWORD
(* vi's 'e' command takes user last char in word
* but 'de' deletes up to and including last char of word
* So we need to increment by one for deletion. *)
fun endOfWordPlusOne (lineGap, cursorIdx) =
(* todo: fix *)
endOfWord (lineGap, cursorIdx, 1) + 1
fun endOfWORDPlusOne (lineGap, cursorIdx) =
(* todo: fix *)
endOfWORD (lineGap, cursorIdx, 1) + 1
fun helpFirstNonSpaceChr (strPos, str, absIdx, stl, ltl) =
if strPos = String.size str then
case (stl, ltl) of