Tom McLaughlin
Tom McLaughlin
Got it. That happens in the `replwrap` library, right? It would be interesting to see which settings are changed. In general I'm fine with avoiding `stty sane`, but it would...
Ah, I didn't know that `pexpect` is manually sourcing `.bashrc`. So maybe it would be straightforward to run this script before the terminal changes are applied like I mentioned above....
@jakebailey I'm confused, isn't this exactly what the [textDocument/documentHighlight](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_documentHighlight) request does? I thought that had been part of the LSP spec from the beginning. (I was considering switching to the...
Oh, I see -- real semantic highlighting = adding colors to all the different parts of the code, regardless of where the cursor is. Makes sense. Glad to see #1767...
For me, I actually switched to a different bundler after discovering this and a couple other instances where `swc` was just miscompiling my TypeScript.
After looking at the code I was thinking it's actually because the rendering happens in this order: 1) The component's `render` method creates a file input 2) In `componentDidMount` the...
I thought about it a little but for my part I'm just going to work around this by moving it to a part of the UI where it isn't immediately...
Cool, thanks for opening this. A few thoughts: * Can the callback receive information about what was actually copied, for it to inspect? I guess a `ClipboardPolyfill.DT`. * If a...
Actually, maybe there are some use-cases where you'd want to intercept copies you initiated yourself. And maybe copies can be initiated outside of this library. But in any case, I...
Thanks!!! So happy to find a fix. One question though -- I made those changes (just pushed them) and I'm still seeing a warning: ``` Warning: Did not expect server...