Results 146 comments of Erlend

It's pretty much the same i do, except i watch in another provider. Also i check for Error before Loading.

It seems like emojis or grapheme clusters of width 2 isn't counted as such and therefor the cursor position is wrong. Look into Unicode's [EastAsianWidth.txt](https://www.unicode.org/Public/15.0.0/ucd/EastAsianWidth.txt) doc on how to determine...

I think this can be closed - I've mentioned the [vis-minimal-theme](https://github.com/erf/vis-minimal-theme), you can use `clear.lua` to use the terminal background / foreground.

With an option to silence the bell (defaulted to off), i don't mind this change.

> > With an option to silence the bell (defaulted to off), i don't mind this change. > > I would consider that useless code that serves as nothing but...

Giving this request a little bump and contemplate a possible design. I really like the functionality in `helix` where you can open and keep a list of files / buffers...

Here is some inspiration for some really interactive text editing done by tscoding in his Dramatic Text editor :) https://www.youtube.com/watch?v=V-o1cKaWOQc&t=100s Not sure if it is really something you'd want in...

I'll close this for now as this was perhaps too out there for TE functinality

I would love to see a simpler way to handle `WebSocket` upgrade on `Bun` using a specific route (e.g. `/ws`) where you can handle events inside that route. For now...

Another example how to upgrade all WebSocket upgrade requests using `Bun`: ```Javascript Bun.serve({ port: process.env.PORT || 3000, fetch: (req, server) => { // check if request is websocket if (req.headers.get('upgrade')...