Merge git://git.kernel.org/pub/scm/gitk/gitk
* git://git.kernel.org/pub/scm/gitk/gitk: gitk: Show the currently checked-out head in bold font gitk: Allow the user to set some colors
This commit is contained in:
commit
67e31d6234
147
gitk
147
gitk
@ -312,7 +312,7 @@ proc getcommit {id} {
|
|||||||
|
|
||||||
proc readrefs {} {
|
proc readrefs {} {
|
||||||
global tagids idtags headids idheads tagcontents
|
global tagids idtags headids idheads tagcontents
|
||||||
global otherrefids idotherrefs
|
global otherrefids idotherrefs mainhead
|
||||||
|
|
||||||
foreach v {tagids idtags headids idheads otherrefids idotherrefs} {
|
foreach v {tagids idtags headids idheads otherrefids idotherrefs} {
|
||||||
catch {unset $v}
|
catch {unset $v}
|
||||||
@ -358,6 +358,13 @@ proc readrefs {} {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
close $refd
|
close $refd
|
||||||
|
set mainhead {}
|
||||||
|
catch {
|
||||||
|
set thehead [exec git symbolic-ref HEAD]
|
||||||
|
if {[string match "refs/heads/*" $thehead]} {
|
||||||
|
set mainhead [string range $thehead 11 end]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
proc show_error {w top msg} {
|
proc show_error {w top msg} {
|
||||||
@ -386,6 +393,7 @@ proc makewindow {} {
|
|||||||
global rowctxmenu mergemax wrapcomment
|
global rowctxmenu mergemax wrapcomment
|
||||||
global highlight_files gdttype
|
global highlight_files gdttype
|
||||||
global searchstring sstring
|
global searchstring sstring
|
||||||
|
global bgcolor fgcolor bglist fglist diffcolors
|
||||||
|
|
||||||
menu .bar
|
menu .bar
|
||||||
.bar add cascade -label "File" -menu .bar.file
|
.bar add cascade -label "File" -menu .bar.file
|
||||||
@ -446,18 +454,19 @@ proc makewindow {} {
|
|||||||
.ctop add .ctop.top
|
.ctop add .ctop.top
|
||||||
set canv .ctop.top.clist.canv
|
set canv .ctop.top.clist.canv
|
||||||
canvas $canv -height $geometry(canvh) -width $geometry(canv1) \
|
canvas $canv -height $geometry(canvh) -width $geometry(canv1) \
|
||||||
-bg white -bd 0 \
|
-background $bgcolor -bd 0 \
|
||||||
-yscrollincr $linespc -yscrollcommand "scrollcanv $cscroll"
|
-yscrollincr $linespc -yscrollcommand "scrollcanv $cscroll"
|
||||||
.ctop.top.clist add $canv
|
.ctop.top.clist add $canv
|
||||||
set canv2 .ctop.top.clist.canv2
|
set canv2 .ctop.top.clist.canv2
|
||||||
canvas $canv2 -height $geometry(canvh) -width $geometry(canv2) \
|
canvas $canv2 -height $geometry(canvh) -width $geometry(canv2) \
|
||||||
-bg white -bd 0 -yscrollincr $linespc
|
-background $bgcolor -bd 0 -yscrollincr $linespc
|
||||||
.ctop.top.clist add $canv2
|
.ctop.top.clist add $canv2
|
||||||
set canv3 .ctop.top.clist.canv3
|
set canv3 .ctop.top.clist.canv3
|
||||||
canvas $canv3 -height $geometry(canvh) -width $geometry(canv3) \
|
canvas $canv3 -height $geometry(canvh) -width $geometry(canv3) \
|
||||||
-bg white -bd 0 -yscrollincr $linespc
|
-background $bgcolor -bd 0 -yscrollincr $linespc
|
||||||
.ctop.top.clist add $canv3
|
.ctop.top.clist add $canv3
|
||||||
bind .ctop.top.clist <Configure> {resizeclistpanes %W %w}
|
bind .ctop.top.clist <Configure> {resizeclistpanes %W %w}
|
||||||
|
lappend bglist $canv $canv2 $canv3
|
||||||
|
|
||||||
set sha1entry .ctop.top.bar.sha1
|
set sha1entry .ctop.top.bar.sha1
|
||||||
set entries $sha1entry
|
set entries $sha1entry
|
||||||
@ -563,19 +572,22 @@ proc makewindow {} {
|
|||||||
trace add variable searchstring write incrsearch
|
trace add variable searchstring write incrsearch
|
||||||
pack $sstring -side left -expand 1 -fill x
|
pack $sstring -side left -expand 1 -fill x
|
||||||
set ctext .ctop.cdet.left.ctext
|
set ctext .ctop.cdet.left.ctext
|
||||||
text $ctext -bg white -state disabled -font $textfont \
|
text $ctext -background $bgcolor -foreground $fgcolor \
|
||||||
|
-state disabled -font $textfont \
|
||||||
-width $geometry(ctextw) -height $geometry(ctexth) \
|
-width $geometry(ctextw) -height $geometry(ctexth) \
|
||||||
-yscrollcommand scrolltext -wrap none
|
-yscrollcommand scrolltext -wrap none
|
||||||
scrollbar .ctop.cdet.left.sb -command "$ctext yview"
|
scrollbar .ctop.cdet.left.sb -command "$ctext yview"
|
||||||
pack .ctop.cdet.left.sb -side right -fill y
|
pack .ctop.cdet.left.sb -side right -fill y
|
||||||
pack $ctext -side left -fill both -expand 1
|
pack $ctext -side left -fill both -expand 1
|
||||||
.ctop.cdet add .ctop.cdet.left
|
.ctop.cdet add .ctop.cdet.left
|
||||||
|
lappend bglist $ctext
|
||||||
|
lappend fglist $ctext
|
||||||
|
|
||||||
$ctext tag conf comment -wrap $wrapcomment
|
$ctext tag conf comment -wrap $wrapcomment
|
||||||
$ctext tag conf filesep -font [concat $textfont bold] -back "#aaaaaa"
|
$ctext tag conf filesep -font [concat $textfont bold] -back "#aaaaaa"
|
||||||
$ctext tag conf hunksep -fore blue
|
$ctext tag conf hunksep -fore [lindex $diffcolors 2]
|
||||||
$ctext tag conf d0 -fore red
|
$ctext tag conf d0 -fore [lindex $diffcolors 0]
|
||||||
$ctext tag conf d1 -fore "#00a000"
|
$ctext tag conf d1 -fore [lindex $diffcolors 1]
|
||||||
$ctext tag conf m0 -fore red
|
$ctext tag conf m0 -fore red
|
||||||
$ctext tag conf m1 -fore blue
|
$ctext tag conf m1 -fore blue
|
||||||
$ctext tag conf m2 -fore green
|
$ctext tag conf m2 -fore green
|
||||||
@ -608,11 +620,15 @@ proc makewindow {} {
|
|||||||
pack .ctop.cdet.right.mode -side top -fill x
|
pack .ctop.cdet.right.mode -side top -fill x
|
||||||
set cflist .ctop.cdet.right.cfiles
|
set cflist .ctop.cdet.right.cfiles
|
||||||
set indent [font measure $mainfont "nn"]
|
set indent [font measure $mainfont "nn"]
|
||||||
text $cflist -width $geometry(cflistw) -background white -font $mainfont \
|
text $cflist -width $geometry(cflistw) \
|
||||||
|
-background $bgcolor -foreground $fgcolor \
|
||||||
|
-font $mainfont \
|
||||||
-tabs [list $indent [expr {2 * $indent}]] \
|
-tabs [list $indent [expr {2 * $indent}]] \
|
||||||
-yscrollcommand ".ctop.cdet.right.sb set" \
|
-yscrollcommand ".ctop.cdet.right.sb set" \
|
||||||
-cursor [. cget -cursor] \
|
-cursor [. cget -cursor] \
|
||||||
-spacing1 1 -spacing3 1
|
-spacing1 1 -spacing3 1
|
||||||
|
lappend bglist $cflist
|
||||||
|
lappend fglist $cflist
|
||||||
scrollbar .ctop.cdet.right.sb -command "$cflist yview"
|
scrollbar .ctop.cdet.right.sb -command "$cflist yview"
|
||||||
pack .ctop.cdet.right.sb -side right -fill y
|
pack .ctop.cdet.right.sb -side right -fill y
|
||||||
pack $cflist -side left -fill both -expand 1
|
pack $cflist -side left -fill both -expand 1
|
||||||
@ -747,6 +763,7 @@ proc savestuff {w} {
|
|||||||
global maxwidth showneartags
|
global maxwidth showneartags
|
||||||
global viewname viewfiles viewargs viewperm nextviewnum
|
global viewname viewfiles viewargs viewperm nextviewnum
|
||||||
global cmitmode wrapcomment
|
global cmitmode wrapcomment
|
||||||
|
global colors bgcolor fgcolor diffcolors
|
||||||
|
|
||||||
if {$stuffsaved} return
|
if {$stuffsaved} return
|
||||||
if {![winfo viewable .]} return
|
if {![winfo viewable .]} return
|
||||||
@ -761,6 +778,10 @@ proc savestuff {w} {
|
|||||||
puts $f [list set cmitmode $cmitmode]
|
puts $f [list set cmitmode $cmitmode]
|
||||||
puts $f [list set wrapcomment $wrapcomment]
|
puts $f [list set wrapcomment $wrapcomment]
|
||||||
puts $f [list set showneartags $showneartags]
|
puts $f [list set showneartags $showneartags]
|
||||||
|
puts $f [list set bgcolor $bgcolor]
|
||||||
|
puts $f [list set fgcolor $fgcolor]
|
||||||
|
puts $f [list set colors $colors]
|
||||||
|
puts $f [list set diffcolors $diffcolors]
|
||||||
puts $f "set geometry(width) [winfo width .ctop]"
|
puts $f "set geometry(width) [winfo width .ctop]"
|
||||||
puts $f "set geometry(height) [winfo height .ctop]"
|
puts $f "set geometry(height) [winfo height .ctop]"
|
||||||
puts $f "set geometry(canv1) [expr {[winfo width $canv]-2}]"
|
puts $f "set geometry(canv1) [expr {[winfo width $canv]-2}]"
|
||||||
@ -2870,11 +2891,11 @@ proc drawlines {id} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc drawcmittext {id row col rmx} {
|
proc drawcmittext {id row col rmx} {
|
||||||
global linespc canv canv2 canv3 canvy0
|
global linespc canv canv2 canv3 canvy0 fgcolor
|
||||||
global commitlisted commitinfo rowidlist
|
global commitlisted commitinfo rowidlist
|
||||||
global rowtextx idpos idtags idheads idotherrefs
|
global rowtextx idpos idtags idheads idotherrefs
|
||||||
global linehtag linentag linedtag
|
global linehtag linentag linedtag
|
||||||
global mainfont canvxmax boldrows boldnamerows
|
global mainfont canvxmax boldrows boldnamerows fgcolor
|
||||||
|
|
||||||
set ofill [expr {[lindex $commitlisted $row]? "blue": "white"}]
|
set ofill [expr {[lindex $commitlisted $row]? "blue": "white"}]
|
||||||
set x [xc $row $col]
|
set x [xc $row $col]
|
||||||
@ -2882,7 +2903,7 @@ proc drawcmittext {id row col rmx} {
|
|||||||
set orad [expr {$linespc / 3}]
|
set orad [expr {$linespc / 3}]
|
||||||
set t [$canv create oval [expr {$x - $orad}] [expr {$y - $orad}] \
|
set t [$canv create oval [expr {$x - $orad}] [expr {$y - $orad}] \
|
||||||
[expr {$x + $orad - 1}] [expr {$y + $orad - 1}] \
|
[expr {$x + $orad - 1}] [expr {$y + $orad - 1}] \
|
||||||
-fill $ofill -outline black -width 1]
|
-fill $ofill -outline $fgcolor -width 1 -tags circle]
|
||||||
$canv raise $t
|
$canv raise $t
|
||||||
$canv bind $t <1> {selcanvline {} %x %y}
|
$canv bind $t <1> {selcanvline {} %x %y}
|
||||||
set xt [xc $row [llength [lindex $rowidlist $row]]]
|
set xt [xc $row [llength [lindex $rowidlist $row]]]
|
||||||
@ -2910,13 +2931,13 @@ proc drawcmittext {id row col rmx} {
|
|||||||
lappend nfont bold
|
lappend nfont bold
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
set linehtag($row) [$canv create text $xt $y -anchor w \
|
set linehtag($row) [$canv create text $xt $y -anchor w -fill $fgcolor \
|
||||||
-text $headline -font $font]
|
-text $headline -font $font -tags text]
|
||||||
$canv bind $linehtag($row) <Button-3> "rowmenu %X %Y $id"
|
$canv bind $linehtag($row) <Button-3> "rowmenu %X %Y $id"
|
||||||
set linentag($row) [$canv2 create text 3 $y -anchor w \
|
set linentag($row) [$canv2 create text 3 $y -anchor w -fill $fgcolor \
|
||||||
-text $name -font $nfont]
|
-text $name -font $nfont -tags text]
|
||||||
set linedtag($row) [$canv3 create text 3 $y -anchor w \
|
set linedtag($row) [$canv3 create text 3 $y -anchor w -fill $fgcolor \
|
||||||
-text $date -font $mainfont]
|
-text $date -font $mainfont -tags text]
|
||||||
set xr [expr {$xt + [font measure $mainfont $headline]}]
|
set xr [expr {$xt + [font measure $mainfont $headline]}]
|
||||||
if {$xr > $canvxmax} {
|
if {$xr > $canvxmax} {
|
||||||
set canvxmax $xr
|
set canvxmax $xr
|
||||||
@ -3136,9 +3157,9 @@ proc bindline {t id} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc drawtags {id x xt y1} {
|
proc drawtags {id x xt y1} {
|
||||||
global idtags idheads idotherrefs
|
global idtags idheads idotherrefs mainhead
|
||||||
global linespc lthickness
|
global linespc lthickness
|
||||||
global canv mainfont commitrow rowtextx curview
|
global canv mainfont commitrow rowtextx curview fgcolor bgcolor
|
||||||
|
|
||||||
set marks {}
|
set marks {}
|
||||||
set ntags 0
|
set ntags 0
|
||||||
@ -3163,8 +3184,14 @@ proc drawtags {id x xt y1} {
|
|||||||
set yb [expr {$yt + $linespc - 1}]
|
set yb [expr {$yt + $linespc - 1}]
|
||||||
set xvals {}
|
set xvals {}
|
||||||
set wvals {}
|
set wvals {}
|
||||||
|
set i -1
|
||||||
foreach tag $marks {
|
foreach tag $marks {
|
||||||
set wid [font measure $mainfont $tag]
|
incr i
|
||||||
|
if {$i >= $ntags && $i < $ntags + $nheads && $tag eq $mainhead} {
|
||||||
|
set wid [font measure [concat $mainfont bold] $tag]
|
||||||
|
} else {
|
||||||
|
set wid [font measure $mainfont $tag]
|
||||||
|
}
|
||||||
lappend xvals $xt
|
lappend xvals $xt
|
||||||
lappend wvals $wid
|
lappend wvals $wid
|
||||||
set xt [expr {$xt + $delta + $wid + $lthickness + $linespc}]
|
set xt [expr {$xt + $delta + $wid + $lthickness + $linespc}]
|
||||||
@ -3175,6 +3202,7 @@ proc drawtags {id x xt y1} {
|
|||||||
foreach tag $marks x $xvals wid $wvals {
|
foreach tag $marks x $xvals wid $wvals {
|
||||||
set xl [expr {$x + $delta}]
|
set xl [expr {$x + $delta}]
|
||||||
set xr [expr {$x + $delta + $wid + $lthickness}]
|
set xr [expr {$x + $delta + $wid + $lthickness}]
|
||||||
|
set font $mainfont
|
||||||
if {[incr ntags -1] >= 0} {
|
if {[incr ntags -1] >= 0} {
|
||||||
# draw a tag
|
# draw a tag
|
||||||
set t [$canv create polygon $x [expr {$yt + $delta}] $xl $yt \
|
set t [$canv create polygon $x [expr {$yt + $delta}] $xl $yt \
|
||||||
@ -3186,6 +3214,9 @@ proc drawtags {id x xt y1} {
|
|||||||
# draw a head or other ref
|
# draw a head or other ref
|
||||||
if {[incr nheads -1] >= 0} {
|
if {[incr nheads -1] >= 0} {
|
||||||
set col green
|
set col green
|
||||||
|
if {$tag eq $mainhead} {
|
||||||
|
lappend font bold
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
set col "#ddddff"
|
set col "#ddddff"
|
||||||
}
|
}
|
||||||
@ -3201,8 +3232,8 @@ proc drawtags {id x xt y1} {
|
|||||||
-width 0 -fill "#ffddaa" -tags tag.$id
|
-width 0 -fill "#ffddaa" -tags tag.$id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
set t [$canv create text $xl $y1 -anchor w -text $tag \
|
set t [$canv create text $xl $y1 -anchor w -text $tag -fill $fgcolor \
|
||||||
-font $mainfont -tags tag.$id]
|
-font $font -tags [list tag.$id text]]
|
||||||
if {$ntags >= 0} {
|
if {$ntags >= 0} {
|
||||||
$canv bind $t <1> [list showtag $tag 1]
|
$canv bind $t <1> [list showtag $tag 1]
|
||||||
}
|
}
|
||||||
@ -3223,10 +3254,11 @@ proc xcoord {i level ln} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc show_status {msg} {
|
proc show_status {msg} {
|
||||||
global canv mainfont
|
global canv mainfont fgcolor
|
||||||
|
|
||||||
clear_display
|
clear_display
|
||||||
$canv create text 3 3 -anchor nw -text $msg -font $mainfont -tags textitems
|
$canv create text 3 3 -anchor nw -text $msg -font $mainfont \
|
||||||
|
-tags text -fill $fgcolor
|
||||||
}
|
}
|
||||||
|
|
||||||
proc finishcommits {} {
|
proc finishcommits {} {
|
||||||
@ -4574,7 +4606,8 @@ proc linehover {} {
|
|||||||
set t [$canv create rectangle $x0 $y0 $x1 $y1 \
|
set t [$canv create rectangle $x0 $y0 $x1 $y1 \
|
||||||
-fill \#ffff80 -outline black -width 1 -tags hover]
|
-fill \#ffff80 -outline black -width 1 -tags hover]
|
||||||
$canv raise $t
|
$canv raise $t
|
||||||
set t [$canv create text $x $y -anchor nw -text $text -tags hover -font $mainfont]
|
set t [$canv create text $x $y -anchor nw -text $text -tags hover \
|
||||||
|
-font $mainfont]
|
||||||
$canv raise $t
|
$canv raise $t
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5242,6 +5275,7 @@ proc doquit {} {
|
|||||||
proc doprefs {} {
|
proc doprefs {} {
|
||||||
global maxwidth maxgraphpct diffopts
|
global maxwidth maxgraphpct diffopts
|
||||||
global oldprefs prefstop showneartags
|
global oldprefs prefstop showneartags
|
||||||
|
global bgcolor fgcolor ctext diffcolors
|
||||||
|
|
||||||
set top .gitkprefs
|
set top .gitkprefs
|
||||||
set prefstop $top
|
set prefstop $top
|
||||||
@ -5265,6 +5299,7 @@ proc doprefs {} {
|
|||||||
-font optionfont
|
-font optionfont
|
||||||
spinbox $top.maxpct -from 1 -to 100 -width 4 -textvariable maxgraphpct
|
spinbox $top.maxpct -from 1 -to 100 -width 4 -textvariable maxgraphpct
|
||||||
grid x $top.maxpctl $top.maxpct -sticky w
|
grid x $top.maxpctl $top.maxpct -sticky w
|
||||||
|
|
||||||
label $top.ddisp -text "Diff display options"
|
label $top.ddisp -text "Diff display options"
|
||||||
grid $top.ddisp - -sticky w -pady 10
|
grid $top.ddisp - -sticky w -pady 10
|
||||||
label $top.diffoptl -text "Options for diff program" \
|
label $top.diffoptl -text "Options for diff program" \
|
||||||
@ -5276,6 +5311,34 @@ proc doprefs {} {
|
|||||||
checkbutton $top.ntag.b -variable showneartags
|
checkbutton $top.ntag.b -variable showneartags
|
||||||
pack $top.ntag.b $top.ntag.l -side left
|
pack $top.ntag.b $top.ntag.l -side left
|
||||||
grid x $top.ntag -sticky w
|
grid x $top.ntag -sticky w
|
||||||
|
|
||||||
|
label $top.cdisp -text "Colors: press to choose"
|
||||||
|
grid $top.cdisp - -sticky w -pady 10
|
||||||
|
label $top.bg -padx 40 -relief sunk -background $bgcolor
|
||||||
|
button $top.bgbut -text "Background" -font optionfont \
|
||||||
|
-command [list choosecolor bgcolor 0 $top.bg background setbg]
|
||||||
|
grid x $top.bgbut $top.bg -sticky w
|
||||||
|
label $top.fg -padx 40 -relief sunk -background $fgcolor
|
||||||
|
button $top.fgbut -text "Foreground" -font optionfont \
|
||||||
|
-command [list choosecolor fgcolor 0 $top.fg foreground setfg]
|
||||||
|
grid x $top.fgbut $top.fg -sticky w
|
||||||
|
label $top.diffold -padx 40 -relief sunk -background [lindex $diffcolors 0]
|
||||||
|
button $top.diffoldbut -text "Diff: old lines" -font optionfont \
|
||||||
|
-command [list choosecolor diffcolors 0 $top.diffold "diff old lines" \
|
||||||
|
[list $ctext tag conf d0 -foreground]]
|
||||||
|
grid x $top.diffoldbut $top.diffold -sticky w
|
||||||
|
label $top.diffnew -padx 40 -relief sunk -background [lindex $diffcolors 1]
|
||||||
|
button $top.diffnewbut -text "Diff: new lines" -font optionfont \
|
||||||
|
-command [list choosecolor diffcolors 1 $top.diffnew "diff new lines" \
|
||||||
|
[list $ctext tag conf d1 -foreground]]
|
||||||
|
grid x $top.diffnewbut $top.diffnew -sticky w
|
||||||
|
label $top.hunksep -padx 40 -relief sunk -background [lindex $diffcolors 2]
|
||||||
|
button $top.hunksepbut -text "Diff: hunk header" -font optionfont \
|
||||||
|
-command [list choosecolor diffcolors 2 $top.hunksep \
|
||||||
|
"diff hunk header" \
|
||||||
|
[list $ctext tag conf hunksep -foreground]]
|
||||||
|
grid x $top.hunksepbut $top.hunksep -sticky w
|
||||||
|
|
||||||
frame $top.buts
|
frame $top.buts
|
||||||
button $top.buts.ok -text "OK" -command prefsok
|
button $top.buts.ok -text "OK" -command prefsok
|
||||||
button $top.buts.can -text "Cancel" -command prefscan
|
button $top.buts.can -text "Cancel" -command prefscan
|
||||||
@ -5285,6 +5348,35 @@ proc doprefs {} {
|
|||||||
grid $top.buts - - -pady 10 -sticky ew
|
grid $top.buts - - -pady 10 -sticky ew
|
||||||
}
|
}
|
||||||
|
|
||||||
|
proc choosecolor {v vi w x cmd} {
|
||||||
|
global $v
|
||||||
|
|
||||||
|
set c [tk_chooseColor -initialcolor [lindex [set $v] $vi] \
|
||||||
|
-title "Gitk: choose color for $x"]
|
||||||
|
if {$c eq {}} return
|
||||||
|
$w conf -background $c
|
||||||
|
lset $v $vi $c
|
||||||
|
eval $cmd $c
|
||||||
|
}
|
||||||
|
|
||||||
|
proc setbg {c} {
|
||||||
|
global bglist
|
||||||
|
|
||||||
|
foreach w $bglist {
|
||||||
|
$w conf -background $c
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
proc setfg {c} {
|
||||||
|
global fglist canv
|
||||||
|
|
||||||
|
foreach w $fglist {
|
||||||
|
$w conf -foreground $c
|
||||||
|
}
|
||||||
|
allcanvs itemconf text -fill $c
|
||||||
|
$canv itemconf circle -outline $c
|
||||||
|
}
|
||||||
|
|
||||||
proc prefscan {} {
|
proc prefscan {} {
|
||||||
global maxwidth maxgraphpct diffopts
|
global maxwidth maxgraphpct diffopts
|
||||||
global oldprefs prefstop showneartags
|
global oldprefs prefstop showneartags
|
||||||
@ -5620,6 +5712,9 @@ set wrapcomment "none"
|
|||||||
set showneartags 1
|
set showneartags 1
|
||||||
|
|
||||||
set colors {green red blue magenta darkgrey brown orange}
|
set colors {green red blue magenta darkgrey brown orange}
|
||||||
|
set bgcolor white
|
||||||
|
set fgcolor black
|
||||||
|
set diffcolors {red "#00a000" blue}
|
||||||
|
|
||||||
catch {source ~/.gitk}
|
catch {source ~/.gitk}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user