Sebastian Herrlinger

Results 234 comments of Sebastian Herrlinger

Codex manipulates your vscode config and adds a custom keybinding sending a custom sequence that only Codex handles. Opencode will get some setup scripts to tweak terminal configs where possible,...

The `[ ]` is a bug in the markdown parsing, it thinks its a link apparently. We just use the official tree-sitter markdown parser here. As for the quotes in...

That can only happen if something else in the process writes to stdout and pushes the content up, getting it out of sync with the render buffer. Have you seen...

Did this improve in latest version?

I want to provide a generalized copyToClipboard from opentui, as opencode currently does that manually and it does not work remote either because of missing osc52 handling. It's on my...

It does both, currently, it copies to local clipboard and sends osc52 for ssh. But osc52 seems broken the way it is implemented currently and it shouldn't do both by...

Not really. I'd just change it to get the selected text on a keybinding trigger and use the available "copy to clipboard" method and implementation. Biggest issue will be keybinding...

Yes `ctrl+c` on windows, in conpty at least afaik, sends a `CTRL_C_EVENT` which seems not handled correctly by bun and is not translated to SIGINT, so that signal cannot actually...

I am looking into this

@ErwanLegrand were you using `delete` as opposed to `backspace` by any chance, so doing a "forward delete"? I've identified an issue with that at least.