clippy

[?]
May 10, 2025, 7:19 PM
VJNWIGSX5OIDOI27UYU7JAXM4X3KSPEQ37P5UXBLH5KHF3VBTZFQC

Dependencies

  • [2] EC3TVL4X add untracked files
  • [3] D7A7MSIH allow to defer or abandon record, add buttons
  • [4] NOB64XMR fmt and clippy
  • [5] ZVI4AWER woot contents_diff
  • [6] OQ6HSAWH show record log
  • [7] AHWWRC73 navigate log entries
  • [8] TEI5NQ3S add log files selection
  • [9] JE44NYHM display log files diffs
  • [10] L6KSEFQI move cursor related stuff into its module
  • [11] WT3GA27P add cursor with selection
  • [12] ELG3UDT6 allow to rm added files
  • [13] UCBNZULE make changed files paths optional (no path for root)
  • [14] BFN2VHZS refactor file stuff into sub-mod
  • [*] 6YZAVBWU Initial commit

Change contents

  • replacement in inflorescence/src/main.rs at line 575
    [3.2051][10.490:789]()
    "j" => Some(Message::Cursor(cursor::Msg::CursorDown)),
    "k" => Some(Message::Cursor(cursor::Msg::CursorUp)),
    "h" => Some(Message::Cursor(cursor::Msg::CursorLeft)),
    "l" => Some(Message::Cursor(cursor::Msg::CursorRight)),
    [3.2051]
    [3.2052]
    "j" => Some(Message::Cursor(cursor::Msg::Down)),
    "k" => Some(Message::Cursor(cursor::Msg::Up)),
    "h" => Some(Message::Cursor(cursor::Msg::Left)),
    "l" => Some(Message::Cursor(cursor::Msg::Right)),
  • replacement in inflorescence/src/main.rs at line 584
    [10.845][10.845:912]()
    Some(Message::Cursor(cursor::Msg::CursorDown))
    [10.845]
    [10.912]
    Some(Message::Cursor(cursor::Msg::Down))
  • replacement in inflorescence/src/main.rs at line 587
    [10.983][10.983:1048]()
    Some(Message::Cursor(cursor::Msg::CursorUp))
    [10.983]
    [10.1048]
    Some(Message::Cursor(cursor::Msg::Up))
  • replacement in inflorescence/src/main.rs at line 590
    [10.1121][10.1121:1188]()
    Some(Message::Cursor(cursor::Msg::CursorLeft))
    [10.1121]
    [10.1188]
    Some(Message::Cursor(cursor::Msg::Left))
  • replacement in inflorescence/src/main.rs at line 593
    [8.5928][10.1207:1275]()
    Some(Message::Cursor(cursor::Msg::CursorRight))
    [8.5928]
    [8.5975]
    Some(Message::Cursor(cursor::Msg::Right))
  • replacement in inflorescence/src/main.rs at line 638
    [2.8054][10.1276:1353]()
    .on_press(Message::Cursor(cursor::Msg::CursorSelect(
    [2.8054]
    [5.16653]
    .on_press(Message::Cursor(cursor::Msg::Select(
  • replacement in inflorescence/src/main.rs at line 656
    [4.331][10.1383:1460]()
    .on_press(Message::Cursor(cursor::Msg::CursorSelect(
    [4.331]
    [5.16851]
    .on_press(Message::Cursor(cursor::Msg::Select(
  • replacement in inflorescence/src/main.rs at line 678
    [6.5333][10.1490:1567]()
    .on_press(Message::Cursor(cursor::Msg::CursorSelect(
    [6.5333]
    [9.17372]
    .on_press(Message::Cursor(cursor::Msg::Select(
  • replacement in inflorescence/src/main.rs at line 774
    [8.6144][10.1597:1722]()
    Message::Cursor(cursor::Msg::CursorSelect(cursor::Select::LogChangeFile { ix, path: path.clone() }))
    [8.6144]
    [7.12270]
    Message::Cursor(cursor::Msg::Select(cursor::Select::LogChangeFile { ix, path: path.clone() }))
  • edit in inflorescence/src/cursor.rs at line 8
    [10.2044][10.2044:2068]()
    use tokio::sync::watch;
  • replacement in inflorescence/src/cursor.rs at line 16
    [10.2187][10.2187:2276]()
    CursorDown,
    CursorUp,
    CursorRight,
    CursorLeft,
    CursorSelect(Select),
    [10.2187]
    [10.2276]
    Down,
    Up,
    Right,
    Left,
    Select(Select),
  • replacement in inflorescence/src/cursor.rs at line 79
    [10.2495][10.2495:2524]()
    Msg::CursorDown => {
    [10.2495]
    [10.2524]
    Msg::Down => {
  • replacement in inflorescence/src/cursor.rs at line 239
    [10.11822][10.11822:11849]()
    Msg::CursorUp => {
    [10.11822]
    [10.11849]
    Msg::Up => {
  • replacement in inflorescence/src/cursor.rs at line 379
    [10.20411][10.20411:20459]()
    Msg::CursorLeft | Msg::CursorRight => {
    [10.20411]
    [10.20459]
    Msg::Left | Msg::Right => {
  • replacement in inflorescence/src/cursor.rs at line 442
    [10.23144][10.23144:23183]()
    Msg::CursorSelect(select) => {
    [10.23144]
    [10.23183]
    Msg::Select(select) => {