summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-07-05 19:37:09 +1000
committerGitHub <noreply@github.com>2022-07-05 19:37:09 +1000
commitc087dca60a5d1ba807c01713710d383f10868696 (patch)
treea0d14d8d054a3690164d0bcec81f0da5ad53b3a0 /pkg/config/user_config.go
parent86038b3fae46dabe9de4d0c32d3b75f676b1a80a (diff)
parent5bd3eedd7133310b3d3fef5e99d1c753c464a95e (diff)
Merge pull request #2027 from jesseduffield/gozes-jesse
Attempt at fixing CI
Diffstat (limited to 'pkg/config/user_config.go')
-rw-r--r--pkg/config/user_config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 67c407f1a..59bfcc042 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -210,7 +210,7 @@ type KeybindingFilesConfig struct {
CommitChangesWithoutHook string `yaml:"commitChangesWithoutHook"`
AmendLastCommit string `yaml:"amendLastCommit"`
CommitChangesWithEditor string `yaml:"commitChangesWithEditor"`
- IgnoreFile string `yaml:"ignoreFile"`
+ IgnoreOrExcludeFile string `yaml:"IgnoreOrExcludeFile"`
RefreshFiles string `yaml:"refreshFiles"`
StashAllChanges string `yaml:"stashAllChanges"`
ViewStashOptions string `yaml:"viewStashOptions"`
@@ -490,7 +490,7 @@ func GetDefaultConfig() *UserConfig {
CommitChangesWithoutHook: "w",
AmendLastCommit: "A",
CommitChangesWithEditor: "C",
- IgnoreFile: "i",
+ IgnoreOrExcludeFile: "i",
RefreshFiles: "r",
StashAllChanges: "s",
ViewStashOptions: "S",