summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2022-10-14 22:19:53 +0900
committerRyooooooga <eial5q265e5@gmail.com>2022-10-16 09:12:42 +0900
commit11316b7a488ff4afa9a60595fb866a94c4c17216 (patch)
treedf915ed3a35479071cca2a0ef394e344e9d479dd /pkg/config
parent8f3ccd07db6f92915b0029055e5e06364664c60e (diff)
feat: add rename stash
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index f3ff1befb..a90b100d5 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -265,7 +265,8 @@ type KeybindingCommitsConfig struct {
}
type KeybindingStashConfig struct {
- PopStash string `yaml:"popStash"`
+ PopStash string `yaml:"popStash"`
+ RenameStash string `yaml:"renameStash"`
}
type KeybindingCommitFilesConfig struct {
@@ -547,7 +548,8 @@ func GetDefaultConfig() *UserConfig {
ViewBisectOptions: "b",
},
Stash: KeybindingStashConfig{
- PopStash: "g",
+ PopStash: "g",
+ RenameStash: "r",
},
CommitFiles: KeybindingCommitFilesConfig{
CheckoutCommitFile: "c",