This is due to Lua's string.find function being unable to find stuff with -${text}, where ${text} is some text after the -. You can, however, find stuff if you use %- instead. So I modified the search function to check for - and replace it with %-.
This is due to Lua's `string.find` function being unable to find stuff with `-${text}`, where ${text} is some text after the `-`. You can, however, find stuff if you use `%-` instead. So I modified the search function to check for `-` and replace it with `%-`.
This is due to Lua's
string.find
function being unable to find stuff with-${text}
, where ${text} is some text after the-
. You can, however, find stuff if you use%-
instead. So I modified the search function to check for-
and replace it with%-
.