summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-02 15:12:52 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-02 17:46:56 +1100
commitafbc028ad6f2b8a580f6b22d13f3313ba5c44cf6 (patch)
treed474848a3ba023037a1361e4a6b4466cdf4f010d /pkg
parente331dfcaf845df42580b171ac29380e707844858 (diff)
revert to the old keybinding for stash: I don't want anybody accidentally deleting changes they are trying to stash
Diffstat (limited to 'pkg')
-rw-r--r--pkg/gui/keybindings.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index 6084d26e7..3c5862569 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -209,13 +209,13 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Description: gui.Tr.SLocalize("refreshFiles"),
}, {
ViewName: "files",
- Key: 's',
+ Key: 'S',
Modifier: gocui.ModNone,
Handler: gui.handleStashSave,
Description: gui.Tr.SLocalize("stashFiles"),
}, {
ViewName: "files",
- Key: 'S',
+ Key: 's',
Modifier: gocui.ModNone,
Handler: gui.handleSoftReset,
Description: gui.Tr.SLocalize("softReset"),