summaryrefslogtreecommitdiffstats
path: root/pkg/gui/keybindings.go
diff options
context:
space:
mode:
authorKristijan Husak <husakkristijan@gmail.com>2018-09-25 22:11:51 +0200
committerKristijan Husak <husakkristijan@gmail.com>2018-09-25 22:11:51 +0200
commit28fe3d6cf989e9fe40292a5b40ed9bc2a8cdeaa6 (patch)
tree50213ad8cf56ec4cb8d7ece860635b1d94c2d116 /pkg/gui/keybindings.go
parentb6b21bc98e3a34ffa4cd9d94f4ec79fee7f84daf (diff)
Use confirmation popup for amending last commit.
Diffstat (limited to 'pkg/gui/keybindings.go')
-rw-r--r--pkg/gui/keybindings.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index 44df7b686..b242028c6 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -2,7 +2,6 @@ package gui
import (
"github.com/jesseduffield/gocui"
- "strings"
)
// Binding - a keybinding mapping a key and modifier to a handler. The keypress
@@ -131,7 +130,7 @@ func (gui *Gui) GetKeybindings() []*Binding {
Key: 'M',
Modifier: gocui.ModNone,
Handler: gui.handleAmendCommitPress,
- Description: strings.ToLower(gui.Tr.SLocalize("AmendLastCommit")),
+ Description: gui.Tr.SLocalize("AmendLastCommit"),
}, {
ViewName: "files",
Key: 'C',