We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 413b90f + 6675ea4 commit f124e98Copy full SHA for f124e98
gitk-git/gitk
@@ -5032,13 +5032,14 @@ proc getblobline {bf id} {
5032
proc mergediff {id l} {
5033
global diffmergeid mdifffd
5034
global diffids
5035
+ global diffcontext
5036
global parentlist
5037
global limitdiffs viewfiles curview
5038
5039
set diffmergeid $id
5040
set diffids $id
5041
# this doesn't seem to actually affect anything...
- set cmd [concat | git diff-tree --no-commit-id --cc $id]
5042
+ set cmd [concat | git diff-tree --no-commit-id --cc -U$diffcontext $id]
5043
if {$limitdiffs && $viewfiles($curview) ne {}} {
5044
set cmd [concat $cmd -- $viewfiles($curview)]
5045
}
0 commit comments