Steven Engler
Steven Engler
Here's specifically what I see. If I click the high-priority button on the first file (just below the root entry), both buttons become depressed like in the image above. In...
@dareiff Thanks for the fix!
I get this even with a simpler case using `PhantomData` with C bindings. ```rust #[repr(C)] struct Foo { x: u32, _phantom: std::marker::PhantomData, } #[no_mangle] pub extern "C" fn bar() ->...
It's 1080p, but I think that only makes the problem more noticeable; it would still be incorrect on higher resolutions. It would be fine if all of the lines were...
Yes this still exists. You can see it in the [example](https://mermaid.live/edit#pako:eNp90cGOgyAQBuBXIZxtFbG29bbZ3fsmvXKZylhJEAyOTZrGd1_sto3xsHMBhu-HBO689hp5xS_giJQbsCbjHTv9jcp9-q63SKhZpb3DhMXSOIiE5ZkoNpnYZGXynh6U-4jBK7JnVfBYJo9QvgjtEya1cj8QwFq0TMz4lZqxTBg0hOF5m1jifI2Lf7Bc490CyxUu1rhc4GLGPOEdhg6Mjq92V44xxanFDhWv4lRjA6MlxZWbIh17DYTf2pAPvGrADphwGMmfbq7mFYURX-jLwCVA91bWg8YYunO69Y8vMgPFI2vvGnOZ-2Owsd0S9UOVpvP29mKoHc_b2nfpYHQLgdrrsUzLvDxALrHcS9hJqeuzOB6avBCN3mciBz5N0y_wxZ0J) from the README if you enable "pan & zoom" and then change the zoom level.
FWIW this issue is the reason I personally don't use Helix and the reason I give to others when I recommend not to use it. The fact that you can...
> You should probably disable language servers altogether then, since many will evaluate code (or evaluate/expand) macros. I don't use language servers. But as mentioned above, this doesn't matter: >...
Somewhat related: If the thread is created using `clone()` with `CLONE_THREAD` but not `CLONE_FS`, the threads will have individual working directories. So the working directory should be a per-thread property...
Just adding a note here that `chdir` support was added in #3368. `fchdir` is probably more tricky to implement since the fd exists only in shadow and not the plugin,...
Also worth noting that the sequence numbers seem to be ordered correctly (the data has SEQ=2 and the FIN has SEQ=3), even though they're sent out-of-order. I'm not sure exactly...