mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
git-gui: Don't bind F5/M1-R in all windows
We actually only want our F5/M1-R keystroke bound in the main window. Within a browser/blame/console window pressing these keys should not execute the rescan action. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
c8e23aaf18
commit
f1e031bbeb
1 changed files with 3 additions and 3 deletions
|
@ -2149,9 +2149,9 @@ if {[is_enabled branch]} {
|
|||
bind . <$M1B-Key-N> do_create_branch
|
||||
}
|
||||
|
||||
bind all <Key-F5> do_rescan
|
||||
bind all <$M1B-Key-r> do_rescan
|
||||
bind all <$M1B-Key-R> do_rescan
|
||||
bind . <Key-F5> do_rescan
|
||||
bind . <$M1B-Key-r> do_rescan
|
||||
bind . <$M1B-Key-R> do_rescan
|
||||
bind . <$M1B-Key-s> do_signoff
|
||||
bind . <$M1B-Key-S> do_signoff
|
||||
bind . <$M1B-Key-i> do_add_all
|
||||
|
|
Loading…
Reference in a new issue