Fabian Boehm
52d1806e1f
Apply some manual clippy lints
...
Mostly replacing std::<type>::MAX with <type>::MAX.
Surprising here is replacing
.expect(format!(...))
with
.unwrap_or_else(|_| panic!(...))
It explains that this is because the "format!" would always be called.
2024-05-26 10:45:46 +02:00
Mahmoud Al-Qudsi
5f8f799cf7
Replace C++ doc \return
with "Return"
...
quick_replace '\\\\return(s)? ' 'Return$1 ' src/
Filtered to only lines beginning with //
2024-05-06 14:59:36 -05:00
Mahmoud Al-Qudsi
589639a87d
Replace C++-style \p with Markdown backticks
...
quick_replace '\\\\p ([a-zA-Z0-9_]+)' '`$1`' src/
Filtered to only lines beginning with //
2024-05-06 14:59:23 -05:00
Johannes Altmanninger
5c5ab4f179
Move termsize test into separate file
2024-03-24 12:18:20 +01:00
Johannes Altmanninger
3ae20bdba0
Move fish-rust to project root
2024-01-13 03:58:33 +01:00