diff options
| author | Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> | 2018-12-09 00:10:32 +0300 |
|---|---|---|
| committer | Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> | 2018-12-09 00:10:32 +0300 |
| commit | aa6f0cf9a44f502fe41aecf9ed3f5ddbb8e20a71 (patch) | |
| tree | d29e0dd7c754ff663c325202494a51d7ee034043 /pkg/gui/keybindings.go | |
| parent | git add, git reset and git stash implementation added. (diff) | |
| download | gitbatch-aa6f0cf9a44f502fe41aecf9ed3f5ddbb8e20a71.tar.gz | |
added sync to remote branches with git fetch prune
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 e808959..c6e1814 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -420,6 +420,14 @@ func (gui *Gui) generateKeybindings() error { Display: "k", Description: "Up", Vital: false, + }, { + View: remoteBranchViewFeature.Name, + Key: 's', + Modifier: gocui.ModNone, + Handler: gui.syncRemoteBranch, + Display: "s", + Description: "Synch with Remote", + Vital: true, }, // Commit View Controls { |
