show contents for move, del and undel

[?]
Apr 22, 2025, 7:17 PM
YBLPPHZN7OSTXDQP6EKWYWK4FR4JRTLAUN5KDBBHF66C5TW74KXAC

Dependencies

  • [2] V55EAIWQ add src file LRU cache
  • [3] NRCUG4R2 load changed files src when selected
  • [4] Y5ATDI2H convert changed file diffs and load src only if any needs it
  • [5] AMPZ2BXK show changed files diffs (only Edit atm)
  • [6] PTFDJ567 add untracked files encoding
  • [*] 6YZAVBWU Initial commit

Change contents

  • edit in crates/flowers_ui/src/main.rs at line 191
    [2.2139]
    [2.2139]
    Del,
    Undel,
    Move,
  • edit in crates/flowers_ui/src/main.rs at line 198
    [3.174][2.2201:2231](),[2.2201][2.2201:2231]()
    Move,
    Del,
    Undel,
  • replacement in crates/flowers_ui/src/main.rs at line 886
    [4.3227][4.3227:3629]()
    repo::ChangedFileDiff::Move => ChangedFileDiff::WithoutContents(
    ChangedFileDiffWithoutContents::Move,
    ),
    repo::ChangedFileDiff::Del => ChangedFileDiff::WithoutContents(
    ChangedFileDiffWithoutContents::Del,
    ),
    repo::ChangedFileDiff::Undel => ChangedFileDiff::WithoutContents(
    ChangedFileDiffWithoutContents::Undel,
    ),
    [4.3227]
    [4.3629]
    repo::ChangedFileDiff::Move => {
    ChangedFileDiff::WithContents(ChangedFileDiffWithContents::Move)
    }
    repo::ChangedFileDiff::Del => {
    ChangedFileDiff::WithContents(ChangedFileDiffWithContents::Del)
    }
    repo::ChangedFileDiff::Undel => {
    ChangedFileDiff::WithContents(ChangedFileDiffWithContents::Undel)
    }