I can get commits that show a particular change with
git log --oneline -G"#define *VAR_1"
Is there a way only show the hunks that contain that change. I tried
git diff --no-ext-diff -G"#define *VAR_1"
but it shows all the hunks in all files that contain that search term.