| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | chore: Move everything into one big crate | Benedikt Peetz | 4 days |
| | | | | | | That helps remove duplicated code and rustc/cargo will now also show dead code correctly. | ||
| * | fix: zsh import multiline issue (#2799) | Haris Thohir | 2026-01-22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here is my case: ```sh curl -X POST https://example.com/api \ -H "Content-Type: application/json" \ -d '{ "username": "name", "password": "pass", "details": { "age": 30, "location": "Earth" } }' ``` Using current release version i got: ```sh curl -X POST https://example.com/api \\ -H "Content-Type: application/json" \\ -d '{\ "username": "name",\ "password": "pass",\ "details": {\ "age": 30,\ "location": "Earth"\ }\ }' ``` and i test with `echo \\` (https://github.com/atuinsh/atuin/pull/100#issuecomment-836477081) it also works; there is similar PR https://github.com/atuinsh/atuin/pull/2390, it only works on multiline with `\` suffix, in my case i got: ```sh curl -X POST https://example.com/api \ -H "Content-Type: application/json" \ -d '{\ ``` ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing | ||
| * | fix: clean up new rustc and clippy warnings on Rust 1.89 | Ray Kohler | 2025-09-10 |
| | | |||
| * | fixes #1884: HISTFILE can be a directory or a file (#2630) | Benjamin Weinstein-Raun | 2025-03-24 |
| | | | | | | | Xonsh history import was failing (in the default xonsh configuration) because $HISTFILE is actually a directory in that case. This change sets up the xonsh import to check for a *directory* instead of a regular file, and makes it clearer that other importers expect a regular file. | ||
| * | chore: migrate to rust 2024 (#2635) | Ellie Huxtable | 2025-03-19 |
| | | | | | | | | | | * chore: upgrade to 2024 edition * ugh unsafe * format * nixxxxxxxxxxx why | ||
| * | fix: add .histfile as file to look for when doing atuin import zsh (#2588) | slamp | 2025-02-18 |
| | | |||
| * | chore: move crates into crates/ dir (#1958) | Ellie Huxtable | 2024-04-18 |
| I'd like to tidy up the root a little, and it's nice to have all the rust crates in one place | |||
