diff options
| author | H. Peter Anvin <hpa@smyrno.hos.anvin.org> | 2005-09-27 08:50:08 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@smyrno.hos.anvin.org> | 2005-09-27 08:50:08 -0700 |
| commit | 07cdbb35ccc5dc9d9a6ef34faa8998b8221d73ee (patch) | |
| tree | 91d36e6799ae7c6d10acd7a271ff4921170dcf22 /gitk | |
| parent | 47888f0f3188c39e13e02ad8442c5e785d2ebcdd (diff) | |
| parent | 3cc35e29ec252d0dca1139106fbaa70cb9ad6ef1 (diff) | |
| download | git-07cdbb35ccc5dc9d9a6ef34faa8998b8221d73ee.tar.xz | |
Merge with git+ssh://master.kernel.org/pub/scm/git/git.git
Diffstat (limited to 'gitk')
| -rwxr-xr-x | gitk | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/bin/sh # Tcl ignores the next line -*- tcl -*- \ -exec wish "$0" -- "${1+$@}" +exec wish "$0" -- "$@" # Copyright (C) 2005 Paul Mackerras. All rights reserved. # This program is free software; it may be used, copied, modified @@ -486,6 +486,8 @@ proc makewindow {} { bindall <B2-Motion> "allcanvs scan dragto 0 %y" bind . <Key-Up> "selnextline -1" bind . <Key-Down> "selnextline 1" + bind . <Key-Right> "goforw" + bind . <Key-Left> "goback" bind . <Key-Prior> "allcanvs yview scroll -1 pages" bind . <Key-Next> "allcanvs yview scroll 1 pages" bindkey <Key-Delete> "$ctext yview scroll -1 pages" @@ -493,6 +495,12 @@ proc makewindow {} { bindkey <Key-space> "$ctext yview scroll 1 pages" bindkey p "selnextline -1" bindkey n "selnextline 1" + bindkey z "goback" + bindkey x "goforw" + bindkey i "selnextline -1" + bindkey k "selnextline 1" + bindkey j "goback" + bindkey l "goforw" bindkey b "$ctext yview scroll -1 pages" bindkey d "$ctext yview scroll 18 units" bindkey u "$ctext yview scroll -18 units" |
