Compare commits
2 Commits
v1.5.5-rc2
...
gitgui-0.1
Author | SHA1 | Date | |
---|---|---|---|
3d654be48f | |||
c91ee2bd61 |
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
GVF=GIT-VERSION-FILE
|
GVF=GIT-VERSION-FILE
|
||||||
DEF_VER=0.9.GITGUI
|
DEF_VER=0.10.GITGUI
|
||||||
|
|
||||||
LF='
|
LF='
|
||||||
'
|
'
|
||||||
|
40
git-gui.sh
40
git-gui.sh
@ -1846,6 +1846,22 @@ proc add_range_to_selection {w x y} {
|
|||||||
$w tag add in_sel $begin.0 [expr {$end + 1}].0
|
$w tag add in_sel $begin.0 [expr {$end + 1}].0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
proc show_more_context {} {
|
||||||
|
global repo_config
|
||||||
|
if {$repo_config(gui.diffcontext) < 99} {
|
||||||
|
incr repo_config(gui.diffcontext)
|
||||||
|
reshow_diff
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
proc show_less_context {} {
|
||||||
|
global repo_config
|
||||||
|
if {$repo_config(gui.diffcontext) >= 1} {
|
||||||
|
incr repo_config(gui.diffcontext) -1
|
||||||
|
reshow_diff
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
##
|
##
|
||||||
## ui construction
|
## ui construction
|
||||||
@ -2046,6 +2062,16 @@ if {[is_enabled multicommit] || [is_enabled singlecommit]} {
|
|||||||
|
|
||||||
.mbar.commit add separator
|
.mbar.commit add separator
|
||||||
|
|
||||||
|
.mbar.commit add command -label [mc "Show Less Context"] \
|
||||||
|
-command show_less_context \
|
||||||
|
-accelerator $M1T-\[
|
||||||
|
|
||||||
|
.mbar.commit add command -label [mc "Show More Context"] \
|
||||||
|
-command show_more_context \
|
||||||
|
-accelerator $M1T-\]
|
||||||
|
|
||||||
|
.mbar.commit add separator
|
||||||
|
|
||||||
.mbar.commit add command -label [mc "Sign Off"] \
|
.mbar.commit add command -label [mc "Sign Off"] \
|
||||||
-command do_signoff \
|
-command do_signoff \
|
||||||
-accelerator $M1T-S
|
-accelerator $M1T-S
|
||||||
@ -2593,17 +2619,11 @@ lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
|
|||||||
$ctxm add separator
|
$ctxm add separator
|
||||||
$ctxm add command \
|
$ctxm add command \
|
||||||
-label [mc "Show Less Context"] \
|
-label [mc "Show Less Context"] \
|
||||||
-command {if {$repo_config(gui.diffcontext) >= 1} {
|
-command show_less_context
|
||||||
incr repo_config(gui.diffcontext) -1
|
|
||||||
reshow_diff
|
|
||||||
}}
|
|
||||||
lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
|
lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
|
||||||
$ctxm add command \
|
$ctxm add command \
|
||||||
-label [mc "Show More Context"] \
|
-label [mc "Show More Context"] \
|
||||||
-command {if {$repo_config(gui.diffcontext) < 99} {
|
-command show_more_context
|
||||||
incr repo_config(gui.diffcontext)
|
|
||||||
reshow_diff
|
|
||||||
}}
|
|
||||||
lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
|
lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
|
||||||
$ctxm add separator
|
$ctxm add separator
|
||||||
$ctxm add command \
|
$ctxm add command \
|
||||||
@ -2695,6 +2715,8 @@ bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
|
|||||||
bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
|
bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
|
||||||
bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
|
bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
|
||||||
bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
|
bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
|
||||||
|
bind $ui_comm <$M1B-Key-\[> {show_less_context;break}
|
||||||
|
bind $ui_comm <$M1B-Key-\]> {show_more_context;break}
|
||||||
|
|
||||||
bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
|
bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
|
||||||
bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
|
bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
|
||||||
@ -2738,6 +2760,8 @@ bind . <$M1B-Key-t> do_add_selection
|
|||||||
bind . <$M1B-Key-T> do_add_selection
|
bind . <$M1B-Key-T> do_add_selection
|
||||||
bind . <$M1B-Key-i> do_add_all
|
bind . <$M1B-Key-i> do_add_all
|
||||||
bind . <$M1B-Key-I> do_add_all
|
bind . <$M1B-Key-I> do_add_all
|
||||||
|
bind . <$M1B-Key-\[> {show_less_context;break}
|
||||||
|
bind . <$M1B-Key-\]> {show_more_context;break}
|
||||||
bind . <$M1B-Key-Return> do_commit
|
bind . <$M1B-Key-Return> do_commit
|
||||||
foreach i [list $ui_index $ui_workdir] {
|
foreach i [list $ui_index $ui_workdir] {
|
||||||
bind $i <Button-1> "toggle_or_diff $i %x %y; break"
|
bind $i <Button-1> "toggle_or_diff $i %x %y; break"
|
||||||
|
Reference in New Issue
Block a user