Files
sml-projects/fcore/normal-mode/normal-yank-delete.sml

15 lines
314 B
Standard ML

structure NormalYankDelete =
MakeNormalDelete
(struct
open DrawMsg
open MailboxType
fun initMsgs (low, length, buffer) =
let
val str = LineGap.substring (low, length + 1, buffer)
val msg = YANK str
in
[DRAW msg]
end
end)