begin preparation to remove 'word_type' datatype in cursor.sml, which will simplify implementation of word motions

This commit is contained in:
2024-10-24 13:13:49 +01:00
parent 1f9b01c858
commit 50a0a3e31b
2 changed files with 160 additions and 148 deletions

View File

@@ -858,82 +858,172 @@ struct
else else
NON_BLANK NON_BLANK
fun helpNextWordString fun isNextChrSpace (strPos, str, strTl) =
( strPos, str, absIdx if strPos + 1 < String.size str then
, strTl, lineTl let
, prevWordType, hasPassedSpace) = val chr = String.sub (str, strPos + 1)
in
Char.isSpace chr
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, 0)
in
Char.isSpace chr
end
| [] => false
fun notIsNextChrSpace (strPos, str, strTl) =
let
val isSpace = isNextChrSpace (strPos, str, strTl)
in
not isSpace
end
fun isNextChrNonBlank (strPos, str, strTl) =
if strPos + 1 < String.size str then
let
val chr = String.sub (str, strPos + 1)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, 0)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
| [] => false
fun isNextChrAlphaNum (strPos, str, stl) =
if strPos + 1 < String.size str then
let
val chr = String.sub (str, strPos + 1)
in
Char.isAlphaNum chr orelse chr = #"_"
end
else
case stl of
hd :: _ =>
let
val chr = String.sub (str, 0)
in
Char.isAlphaNum chr orelse chr = #"_"
end
| [] => false
fun isPrevChrSpace (strPos, str, strTl) =
if strPos > 0 then
let
val prevChr = String.sub (str, strPos - 1)
in
Char.isSpace prevChr
end
else
case strTl of
hd :: _ =>
let
val prevChr = String.sub (hd, String.size hd - 1)
in
Char.isSpace prevChr
end
| [] => false
fun notIsPrevChrSpace (strPos, str, strTl) =
let
val isSpace = isPrevChrSpace (strPos, str, strTl)
in
not isSpace
end
fun isPrevChrAlphaNum (strPos, str, strTl) =
if strPos > 0 then
let
val chr = String.sub (str, strPos - 1)
in
Char.isAlphaNum chr orelse chr = #"_"
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, String.size hd - 1)
in
Char.isAlphaNum chr orelse chr = #"_"
end
| [] => false
fun isPrevChrNonBlank (strPos, str, strTl) =
if strPos > 0 then
let
val chr = String.sub (str, strPos - 1)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, String.size hd - 1)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
| [] => false
fun helpNextWordString (strPos, str, absIdx , strTl, lineTl) =
if strPos = String.size str then if strPos = String.size str then
helpNextWordList helpNextWordList (strTl, lineTl, absIdx)
(strTl, lineTl, absIdx, prevWordType, hasPassedSpace)
else else
let let
val chr = String.sub (str, strPos) val chr = String.sub (str, strPos)
in in
if Char.isAlphaNum chr orelse chr = #"_" then if Char.isAlphaNum chr orelse chr = #"_" then
case prevWordType of if isNextChrNonBlank (strPos, str, strTl) then
ALPHA_NUM => absIdx + 1
(* current chr is ALPHA_NUM
* and previous chr was also ALPHA_NUM
* so continue iterating *)
helpNextWordString
( strPos + 1, str, absIdx + 1
, strTl, lineTl
, ALPHA_NUM, hasPassedSpace
)
| SPACE =>
(* we moved from SPACE to ALPHA_NUM,
* meaning we may have reached a new word. *)
if hasPassedSpace then
absIdx
else else
helpNextWordString helpNextWordString
( strPos + 1, str, absIdx + 1 (strPos + 1, str, absIdx + 1, strTl, lineTl)
, strTl, lineTl
, ALPHA_NUM, true
)
| NON_BLANK=>
(* moved from NON_BLANK to ALPHA_NUM,
* meaning we reached new word *)
absIdx
else if Char.isSpace chr then else if Char.isSpace chr then
if notIsNextChrSpace (strPos, str, strTl) then
absIdx + 1
else
(* nothing to do on space, except keep iterating *) (* nothing to do on space, except keep iterating *)
helpNextWordString helpNextWordString
( strPos + 1, str, absIdx + 1 (strPos + 1, str, absIdx + 1, strTl, lineTl)
, strTl, lineTl
, SPACE, true
)
else else
(* chr is NON_BLANK. *) (* chr is NON_BLANK. *)
case prevWordType of if isNextChrAlphaNum (strPos, str, strTl) then
NON_BLANK => absIdx + 1
(* moved from non-blank to non-blank
* so keep iterating *)
helpNextWordString
( strPos + 1, str, absIdx + 1
, strTl, lineTl
, NON_BLANK, hasPassedSpace
)
| ALPHA_NUM =>
(* moved from ALPHA_NUM to non-blank
* so we have reached new word *)
absIdx
| SPACE =>
(* from space to non-blank *)
if hasPassedSpace then
absIdx
else else
helpNextWordString helpNextWordString
( strPos + 1, str, absIdx + 1 (strPos + 1, str, absIdx + 1, strTl, lineTl)
, strTl, lineTl
, NON_BLANK, true
)
end end
and helpNextWordList (strings, lines, absIdx, prevWordType, hasPassedSpace) = and helpNextWordList (strings, lines, absIdx) =
case (strings, lines) of case (strings, lines) of
(strHd::strTl, lineHd::lineTl) => (strHd::strTl, lineHd::lineTl) =>
helpNextWordString helpNextWordString
( 0, strHd, absIdx, strTl, lineTl, prevWordType, hasPassedSpace ) (0, strHd, absIdx, strTl, lineTl)
| (_, _) => | (_, _) =>
(* reached end of lineGap; (* reached end of lineGap;
* return last valid chr position *) * return last valid chr position *)
@@ -942,11 +1032,9 @@ struct
fun startNextWord (shd, strIdx, absIdx, stl, ltl) = fun startNextWord (shd, strIdx, absIdx, stl, ltl) =
let let
val chr = String.sub (shd, strIdx) val chr = String.sub (shd, strIdx)
val wordType = getWordType chr
val isSpace = wordType = SPACE
in in
helpNextWordString helpNextWordString
(strIdx + 1, shd, absIdx + 1, stl, ltl, wordType, isSpace) (strIdx, shd, absIdx, stl, ltl)
end end
fun nextWord (lineGap: LineGap.t, cursorIdx) = fun nextWord (lineGap: LineGap.t, cursorIdx) =
@@ -977,23 +1065,6 @@ struct
| (_, _) => cursorIdx | (_, _) => cursorIdx
end end
fun isPrevChrSpace (strPos, str, strTl) =
if strPos > 0 then
let
val prevChr = String.sub (str, strPos - 1)
in
Char.isSpace prevChr
end
else
case strTl of
hd :: _ =>
let
val prevChr = String.sub (hd, String.size hd - 1)
in
Char.isSpace prevChr
end
| [] => true
fun helpPrevWordString fun helpPrevWordString
(strPos, str, absIdx, strTl, lineTl, lastWordType) = (strPos, str, absIdx, strTl, lineTl, lastWordType) =
if strPos < 0 then if strPos < 0 then
@@ -1142,65 +1213,6 @@ struct
| (_, _) => cursorIdx | (_, _) => cursorIdx
end end
fun isNextChrSpace (strPos, str, strTl) =
if strPos - 1 < String.size str then
let
val chr = String.sub (str, strPos + 1)
in
Char.isSpace chr
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, 0)
in
Char.isSpace chr
end
| [] => false
fun isNextChrNonBlank (strPos, str, strTl) =
if strPos - 1 < String.size str then
let
val chr = String.sub (str, strPos + 1)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
else
case strTl of
hd :: _ =>
let
val chr = String.sub (hd, 0)
val isNotBlank =
Char.isSpace chr
orelse Char.isAlphaNum chr
orelse chr = #"_"
in
not isNotBlank
end
| [] => false
fun isNextChrAlphaNum (strPos, str, stl) =
if strPos - 1 < String.size str then
let
val chr = String.sub (str, strPos + 1)
in
Char.isAlphaNum chr orelse chr = #"_"
end
else
case stl of
hd :: _ =>
let
val chr = String.sub (str, strPos + 1)
in
Char.isAlphaNum chr orelse chr = #"_"
end
| [] => false
fun helpEndOfWordString fun helpEndOfWordString
(strPos, str, absIdx, stl, ltl) = (strPos, str, absIdx, stl, ltl) =
if strPos = String.size str then if strPos = String.size str then

BIN
shf

Binary file not shown.