Replies: 1 comment 1 reply
-
I think the practical approach here will be for me to dive into the code and add this capability myself. Nothing, including lack of rust experience, stops me from doing that today, now that aforementioned AI can code. Will report back how that goes! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
You can see this ticket #1731 for my train of thought.
I have a working setup now where I'm able to munge delta's output via
git log -p --color | head -n100 | delta | sed -E '...'
and this is okay, however there are some things that I don't like about it:So it looks like I want the tty handle back and that means no using delta in a pipeline to add hyperlinks after delta renders, womp.
Maybe we can define a filter program we can put the file name through? Or even something so specific as a config to enable osc8 hyperlinks that produce absolute path hyperlinks for all files since we know prepending the git repo path to the filename would yield an absolute path. But here I will still need for my own use case special stuff like the system hostname in that hyperlink.
Beta Was this translation helpful? Give feedback.
All reactions