diff options
| author | Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> | 2018-12-04 00:51:36 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-04 00:51:36 +0300 |
| commit | 45b6f4e5de0cb37d39a44d8261be6a4f1ab3ff40 (patch) | |
| tree | c787a7c8dd4514f8f1da9564e15f7df90b396616 /pkg/gui/keybindings.go | |
| parent | update readme (diff) | |
| download | gitbatch-45b6f4e5de0cb37d39a44d8261be6a4f1ab3ff40.tar.gz | |
Develop (#20)
* restyle on repository selection
* restyle continued on selections
* added initial logging to git package
* reverse scrolling on commits implemented
Diffstat (limited to 'pkg/gui/keybindings.go')
| -rw-r--r-- | pkg/gui/keybindings.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index df3e4d8..f224bc3 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -109,6 +109,14 @@ func (gui *Gui) generateKeybindings() error { Display: "s", Description: "Iterate over commits", Vital: false, + },{ + View: mainViewFeature.Name, + Key: 's', + Modifier: gocui.ModAlt, + Handler: gui.prevCommit, + Display: "alt + s", + Description: "Iterate over commits", + Vital: false, }, { View: mainViewFeature.Name, Key: 'd', |
