It’s 2:56 AM and I’m writing log entries on my web site. I have to start going to bed earlier.
Today’s doings:
-
Yet more reg exp stuff… this time supporting names for sub expressions. To give you some idea of just how ugly and weird these things can be, here is an expression for doing a case insensitive search for any word except ‘the’ which is contained 3 or more times in a sentence. When such a word is found, only the first word will be hilighted.
(?I)\b(?!the)(?P<word>\w+)(?=(([, ]+\w+)*?[, ]+(?P=word)){2,}\b)
Not exactly pretty is it? -
Just adding psuedo multi window support for JujuEdit, so that user will be able to Ctrl-Tab between JujuEdit windows. Yawn.