Danyel
Danyel
@Caellian you can add this to the start of the function so it works with negative numbers (wasn't in my use case): ``` if number < 0 { return "-"...
Agree that it might lead to confusion, initially thought they are duplicates as well. However, saving changes universally seems a lot more complicated than starting out with untitled files. I...
While I *love* that this has been added and was the major blocker for seriously considering zed, I just realized that the implementation of unsaved changes has two considerations: 1....
If I close an unsaved file, a dialog will ask to either save, discard or cancel. If I close the entire application, the file will remain dirty and once reopened...
The feature is not really interesting for me because when I change a file in my editor and don't press Save, it's mostly because I forgot, so I'd prefer it...
This is interesting. I have actually been using (the now unmaintained) `tempdir` crate to test previous versions of the library and have never run into issues. I thought initially that...
This seems to be fixed in the v7 beta release. I checked it against both the newest v6 version (which is on crates.io right now) and the v7 beta release....
Thank you for opening an issue on this. There was an ancient PR which set the locale which I declined because it's not acceptable for a library to have such...
I added a testcase with your file since it builds locally for me (Mac OS). Let's see how the build matrix will fare
BTW according to [this](https://stackoverflow.com/questions/3130407/c-wide-characters-outputting-incorrectly) SO, you can just `setlocale(LC_ALL, "")`. It seems this is not fixable by the library (without calling `setlocale`), at least I couldn't find anything, so the...