summaryrefslogtreecommitdiffstats
path: root/pkg/gui/files_panel.go
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2018-08-29 13:43:59 +0200
committerDawid Dziurla <dawidd0811@gmail.com>2018-09-03 17:52:05 +0200
commit28a9594ef7f7dad70efa9470ed12e5d102f6c5df (patch)
tree1f0e2bd959b5e2fe6453d7bc5f8aa359cb03f7b2 /pkg/gui/files_panel.go
parent77623db1d0fc2d435b11098f2f50ad75b419c3ce (diff)
update help panel
- delete scrolling ability - lines are now selectable - implemented handler execution when space is pressed - add example descriptions for status panel keybindings
Diffstat (limited to 'pkg/gui/files_panel.go')
-rw-r--r--pkg/gui/files_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/files_panel.go b/pkg/gui/files_panel.go
index 90f2b7e84..cf98e8a44 100644
--- a/pkg/gui/files_panel.go
+++ b/pkg/gui/files_panel.go
@@ -185,7 +185,7 @@ func (gui *Gui) renderfilesOptions(g *gocui.Gui, file *commands.File) error {
"e": gui.Tr.SLocalize("edit"),
"a": gui.Tr.SLocalize("toggleStagedAll"),
"PgUp/PgDn": gui.Tr.SLocalize("scroll"),
- "?": gui.Tr.SLocalize("help"),
+ "?": gui.Tr.SLocalize("help"), //TODO make it visible for all panels, not only files
}
if gui.State.HasMergeConflicts {
optionsMap["a"] = gui.Tr.SLocalize("abortMerge")