summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorDavyd McColl <davydm@gmail.com>2020-11-18 16:17:16 +0200
committerJesse Duffield <jessedduffield@gmail.com>2020-11-28 10:27:28 +1100
commit26d5444919a04169d970f662cd1ac6ce4de026a1 (patch)
treede17a2ffe09bb52f36787b64ab3634f1350418c1 /pkg/config
parente05c41828c7d70f207d9f1175c6c749646c4c361 (diff)
:sparkles: implement quick commit when no files staged, if configured to do so
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go24
1 files changed, 13 insertions, 11 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 216869f19..5891071b7 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -17,16 +17,17 @@ type UserConfig struct {
}
type GuiConfig struct {
- ScrollHeight int `yaml:"scrollHeight"`
- ScrollPastBottom bool `yaml:"scrollPastBottom"`
- MouseEvents bool `yaml:"mouseEvents"`
- SkipUnstageLineWarning bool `yaml:"skipUnstageLineWarning"`
- SkipStashWarning bool `yaml:"skipStashWarning"`
- SidePanelWidth float64 `yaml:"sidePanelWidth"`
- ExpandFocusedSidePanel bool `yaml:"expandFocusedSidePanel"`
- MainPanelSplitMode string `yaml:"mainPanelSplitMode"`
- Theme ThemeConfig `yaml:"theme"`
- CommitLength CommitLengthConfig `yaml:"commitLength"`
+ ScrollHeight int `yaml:"scrollHeight"`
+ ScrollPastBottom bool `yaml:"scrollPastBottom"`
+ MouseEvents bool `yaml:"mouseEvents"`
+ SkipUnstageLineWarning bool `yaml:"skipUnstageLineWarning"`
+ SkipStashWarning bool `yaml:"skipStashWarning"`
+ SidePanelWidth float64 `yaml:"sidePanelWidth"`
+ ExpandFocusedSidePanel bool `yaml:"expandFocusedSidePanel"`
+ MainPanelSplitMode string `yaml:"mainPanelSplitMode"`
+ Theme ThemeConfig `yaml:"theme"`
+ CommitLength CommitLengthConfig `yaml:"commitLength"`
+ SkipNoStagedFilesWarning bool `yaml:"skipNoStagedFilesWarning"`
}
type ThemeConfig struct {
@@ -280,7 +281,8 @@ func GetDefaultConfig() *UserConfig {
SelectedLineBgColor: []string{"default"},
SelectedRangeBgColor: []string{"blue"},
},
- CommitLength: CommitLengthConfig{Show: true},
+ CommitLength: CommitLengthConfig{Show: true},
+ SkipNoStagedFilesWarning: false,
},
Git: GitConfig{
Paging: PagingConfig{