summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorLiberatys <nick.flueckiger@renuo.ch>2021-06-20 16:55:50 +0200
committerJesse Duffield <jessedduffield@gmail.com>2021-08-25 20:13:50 +1000
commit2dc6f5f07971dc5a8ed6cc22151b81fe659ba326 (patch)
tree553341841998b81109da9f1d6bfa6cfffdd9193d /pkg/config
parentbdea3b7dcfc6da36d8bb52fca0bc9dc32027320b (diff)
Implement state filtering for commit files
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index d2d98ac52..9d61cb68f 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -189,6 +189,7 @@ type KeybindingFilesConfig struct {
Fetch string `yaml:"fetch"`
ToggleTreeView string `yaml:"toggleTreeView"`
OpenMergeTool string `yaml:"openMergeTool"`
+ OpenStatusFilter string `yaml:"openStatusFilter"`
}
type KeybindingBranchesConfig struct {
@@ -438,6 +439,7 @@ func GetDefaultConfig() *UserConfig {
Fetch: "f",
ToggleTreeView: "`",
OpenMergeTool: "M",
+ OpenStatusFilter: "<c-b>",
},
Branches: KeybindingBranchesConfig{
CopyPullRequestURL: "<c-y>",