X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=blobdiff_plain;f=pret-lam.lua;h=cf50e87408e1d880d98b2c506a4207879431b2ad;hp=c05f987bd71747b26b23c7a31b8775e4d8db1974;hb=0028507a3d326add5d45d20cfe750ef964d9b3f0;hpb=70ce03a503dc915067321c2b321038ab0ce43586;ds=sidebyside diff --git a/pret-lam.lua b/pret-lam.lua index c05f987..cf50e87 100644 --- a/pret-lam.lua +++ b/pret-lam.lua @@ -62,7 +62,9 @@ end -- Take a single word from str, if posible. Returns the rest of the string and -- the word taken. function buffers.visualizers.lam.take_word(str) - res, newstr = utf.match(str, "^(%a[%a%d_]+)(.*)") + -- A word must always start with a-z (in particular, λ is not a valid + -- start of a word). + res, newstr = utf.match(str, "^([a-z][%a%d_]+)(.*)") return res, newstr or str end