Dan Davison
Dan Davison
Thanks very much @jtroo. Should be fixed in https://github.com/dandavison/delta/pull/581. Any chance you could confirm that's behaving as expected for you?
> Thanks very much @jtroo. Should be fixed in #581. Any chance you could confirm that's behaving as expected for you? Ah I'm sorry, ignore that, there's more work to...
> I built and tested off of that branch. Works as expected now :) Thanks @jtroo! There were just some fairly superficial test failures; in master now.
Actually, I think there might be an even easier fix. @lourenci, I think you need to add `light = true`: ```gitconfig [delta] light = true navigate = true syntax-theme =...
For the record, I'll point out that `syntax-theme` only affects _foreground_ colors (syntax highlighting). Background colors are not affected at all by setting `syntax-theme`; they are affected by things like...
> changing environment variables will not affect open terminals @chtenb right, that's true. But you can use some suitable mutable state such as a file on disk, and create a...
Is the following an accurate summary? - `commit-style = raw` allows git's raw colors for commit SHA, HEAD, local, and remote branch names to be displayed by delta - But,...
Yep, raw is the default ``` ~ delta --no-gitconfig --show-config | grep commit-style commit-style = raw ``` and I believe it works; try `git show --color=always --decorate | delta --no-gitconfig`...
Delta does this for a few reasons now: - To syntax highlight output from `git grep`, `rg`, etc. https://github.com/dandavison/delta/blob/master/src/handlers/grep.rs#L378 standard `$file$sep$linenum$sep$code` grep output is for humans -- it cannot be...
> That would mean typing a lot characters twice (or knowing your shells `Ctrl-K` / `Ctrl-Y` tricks). What about making delta a wrapper for itself I'm actually not sure that...