Merge text.love

[?]
Jan 13, 2023, 5:48 PM
EX43CDDIWOCTHJ3P72XBGMPZ7DEB7R2QCN636R2FWB2Y5OYWW2LAC

Dependencies

Change contents

  • file deletion: colorize.lua (----------)colorize.lua (----------)
    [5.2][5.209133:209169](),[5.2][5.209133:209169](),[5.209169][5.207220:207220]()
    if edge.suffix and ends_with(frag, edge.suffix) then
    Current_state = edge.target
    break
    end
    end
    if edge.prefix and starts_with(frag, edge.prefix) then
    Current_state = edge.target
    break
    end
    end
    end
    function switch_color_based_on_suffix(frag)
    if Next_state[Current_state] == nil then
    return
    end
    frag = rtrim(frag)
    for _,edge in pairs(Next_state[Current_state]) do
  • edit in search.lua at line 119
    [5.51767][2.2135:2168]()
    function rfind(s, pat, i, plain)
  • resurrect zombie in search.lua at line 119
    [5.51767][5.423:561](),[5.51767][5.423:561]()
    -- TODO: avoid the expensive reverse() operations
    -- Particularly if we only care about literal matches, we don't need all of string.find
  • edit in search.lua at line 121
    [5.561]
    [5.587]
    function rfind(s, pat, i, plain)