summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-11-02 21:16:00 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-11-05 07:58:21 +1100
commitccd80a0e4b87af6d9ada5895c2135736665a9387 (patch)
tree7ffa5b68d1ad7ee7dbc1fd62ee1227c666a8423c /pkg/config
parent37be9dbea18f52a544a1dd134657c02c1ee61aef (diff)
add menu options for log stuff
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 2d391b5fb..f9a2e8656 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -86,7 +86,7 @@ type MergingConfig struct {
}
type LogConfig struct {
- Order string `yaml:"order"` // one of date-order, reverse, author-date-order, topo-order
+ Order string `yaml:"order"` // one of date-order, author-date-order, topo-order
ShowGraph string `yaml:"showGraph"` // one of always, never, when-maximised
}
@@ -237,6 +237,7 @@ type KeybindingCommitsConfig struct {
CheckoutCommit string `yaml:"checkoutCommit"`
ResetCherryPick string `yaml:"resetCherryPick"`
CopyCommitMessageToClipboard string `yaml:"copyCommitMessageToClipboard"`
+ OpenLogMenu string `yaml:"openLogMenu"`
}
type KeybindingStashConfig struct {
@@ -492,6 +493,7 @@ func GetDefaultConfig() *UserConfig {
CheckoutCommit: "<space>",
ResetCherryPick: "<c-R>",
CopyCommitMessageToClipboard: "<c-y>",
+ OpenLogMenu: "<c-l>",
},
Stash: KeybindingStashConfig{
PopStash: "g",