summaryrefslogtreecommitdiff
path: root/git-mergetool--lib.sh
diff options
context:
space:
mode:
authorDenton Liu <liu.denton@gmail.com>2019-04-29 06:21:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-05-13 14:11:59 (GMT)
commit884630b2e2634969656faabc7f4e33cab2e32b35 (patch)
tree211341a0242982559a10cad7bb2f3fcfbe111477 /git-mergetool--lib.sh
parent05fb8726cccc74908853c166248ff9b6abdafae5 (diff)
downloadgit-884630b2e2634969656faabc7f4e33cab2e32b35.zip
git-884630b2e2634969656faabc7f4e33cab2e32b35.tar.gz
git-884630b2e2634969656faabc7f4e33cab2e32b35.tar.bz2
mergetool--lib: create gui_mode function
Before, in `get_configured_merge_tool`, we would test the value of the first argument directly, which corresponded to whether we were using guitool. However, since `$GIT_MERGETOOL_GUI` is available as an environment variable, create the `gui_mode` function which increases the clarify of functions which use it. While we're at it, add a space before `()` in function definitions to fix the style. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-mergetool--lib.sh')
-rw-r--r--git-mergetool--lib.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/git-mergetool--lib.sh b/git-mergetool--lib.sh
index b928179..4ca170c 100644
--- a/git-mergetool--lib.sh
+++ b/git-mergetool--lib.sh
@@ -80,14 +80,18 @@ show_tool_names () {
}
}
-diff_mode() {
+diff_mode () {
test "$TOOL_MODE" = diff
}
-merge_mode() {
+merge_mode () {
test "$TOOL_MODE" = merge
}
+gui_mode () {
+ test "$GIT_MERGETOOL_GUI" = true
+}
+
translate_merge_tool_path () {
echo "$1"
}
@@ -350,8 +354,7 @@ guess_merge_tool () {
}
get_configured_merge_tool () {
- # If first argument is true, find the guitool instead
- if test "$1" = true
+ if gui_mode
then
gui_prefix=gui
fi
@@ -405,7 +408,7 @@ get_merge_tool_path () {
get_merge_tool () {
is_guessed=false
# Check if a merge tool has been configured
- merge_tool=$(get_configured_merge_tool $GIT_MERGETOOL_GUI)
+ merge_tool=$(get_configured_merge_tool)
# Try to guess an appropriate merge tool if no tool has been set.
if test -z "$merge_tool"
then