summaryrefslogtreecommitdiff
path: root/add-interactive.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2020-01-14 18:43:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-01-15 20:06:16 (GMT)
commit180f48df69d8e7a1a413d7c11907ecf975f09cf7 (patch)
treefc919d689fdeaac5aaac15fa0a8470c6e5e6eaa4 /add-interactive.h
parent1e4ffc765db69c1c2061452c122caf17c7fb25f3 (diff)
downloadgit-180f48df69d8e7a1a413d7c11907ecf975f09cf7.zip
git-180f48df69d8e7a1a413d7c11907ecf975f09cf7.tar.gz
git-180f48df69d8e7a1a413d7c11907ecf975f09cf7.tar.bz2
built-in add -p: support interactive.diffFilter
The Perl version supports post-processing the colored diff (that is generated in addition to the uncolored diff, intended to offer a prettier user experience) by a command configured via that config setting, and now the built-in version does that, too. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'add-interactive.h')
-rw-r--r--add-interactive.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/add-interactive.h b/add-interactive.h
index b2f2347..46c7386 100644
--- a/add-interactive.h
+++ b/add-interactive.h
@@ -15,9 +15,12 @@ struct add_i_state {
char context_color[COLOR_MAXLEN];
char file_old_color[COLOR_MAXLEN];
char file_new_color[COLOR_MAXLEN];
+
+ char *interactive_diff_filter;
};
void init_add_i_state(struct add_i_state *s, struct repository *r);
+void clear_add_i_state(struct add_i_state *s);
struct repository;
struct pathspec;