git log -S'THEME' -- pelicanconf.py | xargs -n 1 git show shows the contents of each commit that changed THEME
However, it prints full commits, not just changes.
var="THEME"; git log -S"$var" -p -- pelicanconf.py | egrep "$var|commit|Date:"
will show you all options THEMEwith fixing hashes and dates.
@knittl -p.
gitk: . .