Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
gitk: Show the current view's name in the window title
author
Marc Branchaud
<marcnarc@xiplink.com>
Tue, 7 Apr 2015 15:51:51 +0000
(11:51 -0400)
committer
Paul Mackerras
<paulus@samba.org>
Sun, 17 May 2015 01:38:47 +0000
(11:38 +1000)
If the current view is the "Command line" view, show the command line
arguments instead of the view name.
Signed-off-by: Marc Branchaud <marcnarc@xiplink.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
gitk
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
427cf16
)
diff --git
a/gitk
b/gitk
index dc1af41bb7b550cd2ae5d8c5d158b9426349e0d8..8c44e834ebbb68a710462b324dc27d4f9fafdfc0 100755
(executable)
--- a/
gitk
+++ b/
gitk
@@
-4036,6
+4036,19
@@
proc shellsplit {str} {
return $l
}
return $l
}
+proc set_window_title {} {
+ global appname curview viewname vrevs
+ set rev [mc "All files"]
+ if {$curview ne 0} {
+ if {$viewname($curview) eq [mc "Command line"]} {
+ set rev [string map {"--gitk-symmetric-diff-marker" "--merge"} $vrevs($curview)]
+ } else {
+ set rev $viewname($curview)
+ }
+ }
+ wm title . "[reponame]: $rev - $appname"
+}
+
# Code to implement multiple views
proc newview {ishighlight} {
# Code to implement multiple views
proc newview {ishighlight} {
@@
-4512,6
+4525,7
@@
proc showview {n} {
} elseif {$numcommits == 0} {
show_status [mc "No commits selected"]
}
} elseif {$numcommits == 0} {
show_status [mc "No commits selected"]
}
+ set_window_title
}
# Stuff relating to the highlighting facility
}
# Stuff relating to the highlighting facility
@@
-6652,6
+6666,7
@@
proc show_status {msg} {
global canv fgcolor
clear_display
global canv fgcolor
clear_display
+ set_window_title
$canv create text 3 3 -anchor nw -text $msg -font mainfont \
-tags text -fill $fgcolor
}
$canv create text 3 3 -anchor nw -text $msg -font mainfont \
-tags text -fill $fgcolor
}
@@
-12403,7
+12418,7
@@
catch {
}
# wait for the window to become visible
tkwait visibility .
}
# wait for the window to become visible
tkwait visibility .
-wm title . "[reponame] - $appname"
+set_window_title
update
readrefs
update
readrefs