X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=blobdiff_plain;f=pret-lam.lua;h=a87137c0dc0b2428a1484552fe7d0357781f2fcf;hp=7bb1f8a6cab40d376b1269db23381f39b8aa0f46;hb=6493f3173bbe36cdcd51ea6fc607966e10373944;hpb=f4487c5200e90a7b0d9db0319324335fd55e810b;ds=sidebyside diff --git a/pret-lam.lua b/pret-lam.lua index 7bb1f8a..a87137c 100644 --- a/pret-lam.lua +++ b/pret-lam.lua @@ -56,8 +56,10 @@ function buffers.visualizers.lam.flush_line(str,nested) end end if not found then - result[#result+1] = utf.sub(str, 1, 1) - str = utf.sub(str, 2) + -- Take a full word, or a single character. Taking a full word is + -- to prevent matching "in" in "bind" , for example. + result[#result+1] = utf.match(str, "^%a+") or utf.sub(str, 1, 1) + str = utf.sub(str, utf.len(result[#result]) + 1) end end state = finish(state, result)