sindrets / diffview.nvim

Single tabpage interface for easily cycling through diffs for all modified files for any git rev.
Other
3.6k stars 101 forks source link

[Feature request] option to toggle absolute timestamps in DiffviewFileHistory #402

Closed RayJameson closed 11 months ago

RayJameson commented 11 months ago

Hello! Thank you for great plugin, I would really like to have option to toggle absolute timestamps instead of relative. Sometimes I need to check if some change was before or after some certain point in time.

sindrets commented 11 months ago

Sometimes I need to check if some change was before or after some certain point in time.

In that case you're probably better off using the --before= and --after= flag options. Also worth noting is that you can always press L with the cursor over any commit in the file history panel and you'll get the full git show output for that commit. Which includes the exact timestamp.

RayJameson commented 11 months ago

Thanks, both options seem reasonable for me