Mingun

Results 226 issues of Mingun

**Describe the bug** It seems that time to open file does not depend on the file size and even for small files (XML file with 21 lines) can take several...

bug

**Describe the bug** When I open my big (>30000 commits) git svn repository, GitNuro shows the message "Repository changes detection has stopped working: Could not watch directory. Check if it...

bug
wait for reply

The version field is a nice place to turn it into a link to GitHub of the project: ![Place to link to GitHub](https://github.com/user-attachments/assets/7073308a-8c27-4883-a282-47904a7cb582)

enhancement
UI

We cannot distinguish between them when deserialize, so prohibit that to protect from possible errors. If you really need several unit variants, mark all of them except one with `#[serde(skip_deserializing)]`....

In other places `_serde` name is used to access the `serde` crate, so will be defined and can be use there

Adjacently tagged enums with many struct variants should get most benefit from that.

This PR removes one FIXME in the code and probably slightly improves compilation time in some cases

I noted, that when you derive remote deserialization, the name passed to the deserializer is the name of the `Self` type and not the name of the remote type. At...

This PR adds more tests for enum flatten into the struct (each in their own commit): - Ensure, that serialization produces output that can be deserialized - Ensure, that any...

As all known, when you deserialize [`Cow`](https://doc.rust-lang.org/nightly/alloc/borrow/enum.Cow.html), it will always be deserialized as `Owned`, which makes it difficult to implement effective deserialization when you manually want to deserialize `Cow` or...