summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPat Thoyts <patthoyts@users.sourceforge.net>2011-07-19 14:33:34 (GMT)
committerPat Thoyts <patthoyts@users.sourceforge.net>2011-07-19 14:33:34 (GMT)
commit29776c75d0ed79c544601b1630d532f9e121b9c7 (patch)
tree448a1b51c76400fc4a8c72ecd446c8f05e9cfcac
parentaf9a4625fa7aeeb5bc52eed3af7e19579af31f42 (diff)
downloadgit-29776c75d0ed79c544601b1630d532f9e121b9c7.zip
git-29776c75d0ed79c544601b1630d532f9e121b9c7.tar.gz
git-29776c75d0ed79c544601b1630d532f9e121b9c7.tar.bz2
git-gui: drop the 'n' and 'Shift-n' bindings from the last patch.
The 'n' binding should cause the next match to be selected but results in the search field gaining focus and additional 'n's being appended. Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
-rw-r--r--lib/blame.tcl2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl
index bc81e29..2099776 100644
--- a/lib/blame.tcl
+++ b/lib/blame.tcl
@@ -356,9 +356,7 @@ constructor new {i_commit i_path i_jump} {
bind $top <Control-Key-s> [list searchbar::show $finder]
bind $top <Escape> [list searchbar::hide $finder]
bind $top <F3> [list searchbar::find_next $finder]
- bind $top <Key-n> [list searchbar::find_next $finder]
bind $top <Shift-F3> [list searchbar::find_prev $finder]
- bind $top <Shift-Key-n> [list searchbar::find_prev $finder]
bind $top <Control-Key-g> [list linebar::show $gotoline]
catch { bind $top <Shift-Key-XF86_Switch_VT_3> [list searchbar::find_prev $finder] }