clippy
[?]
May 10, 2025, 7:19 PM
VJNWIGSX5OIDOI27UYU7JAXM4X3KSPEQ37P5UXBLH5KHF3VBTZFQCDependencies
- [2]
EC3TVL4Xadd untracked files - [3]
D7A7MSIHallow to defer or abandon record, add buttons - [4]
NOB64XMRfmt and clippy - [5]
ZVI4AWERwoot contents_diff - [6]
OQ6HSAWHshow record log - [7]
AHWWRC73navigate log entries - [8]
TEI5NQ3Sadd log files selection - [9]
JE44NYHMdisplay log files diffs - [10]
L6KSEFQImove cursor related stuff into its module - [11]
WT3GA27Padd cursor with selection - [12]
ELG3UDT6allow to rm added files - [13]
UCBNZULEmake changed files paths optional (no path for root) - [14]
BFN2VHZSrefactor file stuff into sub-mod - [*]
6YZAVBWUInitial commit
Change contents
- replacement in inflorescence/src/main.rs at line 575
"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)),"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
Some(Message::Cursor(cursor::Msg::CursorDown))Some(Message::Cursor(cursor::Msg::Down)) - replacement in inflorescence/src/main.rs at line 587
Some(Message::Cursor(cursor::Msg::CursorUp))Some(Message::Cursor(cursor::Msg::Up)) - replacement in inflorescence/src/main.rs at line 590
Some(Message::Cursor(cursor::Msg::CursorLeft))Some(Message::Cursor(cursor::Msg::Left)) - replacement in inflorescence/src/main.rs at line 593
Some(Message::Cursor(cursor::Msg::CursorRight))Some(Message::Cursor(cursor::Msg::Right)) - replacement in inflorescence/src/main.rs at line 638
.on_press(Message::Cursor(cursor::Msg::CursorSelect(.on_press(Message::Cursor(cursor::Msg::Select( - replacement in inflorescence/src/main.rs at line 656
.on_press(Message::Cursor(cursor::Msg::CursorSelect(.on_press(Message::Cursor(cursor::Msg::Select( - replacement in inflorescence/src/main.rs at line 678
.on_press(Message::Cursor(cursor::Msg::CursorSelect(.on_press(Message::Cursor(cursor::Msg::Select( - replacement in inflorescence/src/main.rs at line 774
Message::Cursor(cursor::Msg::CursorSelect(cursor::Select::LogChangeFile { ix, path: path.clone() }))Message::Cursor(cursor::Msg::Select(cursor::Select::LogChangeFile { ix, path: path.clone() })) - edit in inflorescence/src/cursor.rs at line 8
use tokio::sync::watch; - replacement in inflorescence/src/cursor.rs at line 16
CursorDown,CursorUp,CursorRight,CursorLeft,CursorSelect(Select),Down,Up,Right,Left,Select(Select), - replacement in inflorescence/src/cursor.rs at line 79
Msg::CursorDown => {Msg::Down => { - replacement in inflorescence/src/cursor.rs at line 239
Msg::CursorUp => {Msg::Up => { - replacement in inflorescence/src/cursor.rs at line 379
Msg::CursorLeft | Msg::CursorRight => {Msg::Left | Msg::Right => { - replacement in inflorescence/src/cursor.rs at line 442
Msg::CursorSelect(select) => {Msg::Select(select) => {