lionel-rowe

Results 172 comments of lionel-rowe

@iuioiua is there a reason the deferred `() => import(...)` version wouldn't work? Obviously it'd necessitate changes in the calling code, and maybe it wouldn't play nicely with sync plugins...

Exciting stuff! Any ideas on projected release timeline yet?

FWIW, you can work around it fairly easily by checking the `status` of the `Response` object returned from `freshHandler`: ```ts const freshHandler = await createHandler(manifest, config); Deno.serve(async (req, info) =>...

Why's this closed? It seems like Ctrl+F is still overridden to be "move cursor forward 1 step" (with Ctrl+B being "move cursor back 1 step"), but would anyone ever want...

> @lionel-rowe Do you see the same override and behavior in the CodeMirror demo editor on https://codemirror.net/ ? No. For me (Chrome 119, Windows 11), that demo editor does override...

There are a lot of really surprising entries in many languages. For example, Chinese contains 当地 "local", various number words (一 "one", 三 "three", 七 "seven"), all the full-width digits...

The reason strings aren't accepted as input is that the byte representation of a string depends on encoding. For example, in UTF-8, the bytes of the string `ÕâÊÇÒ»¸ö²âÊÔ×Ö·û´®` would be...

Fair enough, I guess anyone who starts using pegjs for anything substantial is bound to land somewhere that mentions peggyjs at some point.

I still prefer my version, as I _do_ want TS to complain about the uninitialized value elsewhere (e.g. if I'd forgotten to instantiate it). I also don't want to type...

> > as "callable" strictly means functions plus the single special case > > this is incorrect; there’s older engines in which regexes are callable. Whoah, that's pretty freaky. Would...