@@ -137,8 +137,6 @@ type GuiConfig struct {
137137 ShowPanelJumps bool `yaml:"showPanelJumps"`
138138 // Deprecated: use nerdFontsVersion instead
139139 ShowIcons bool `yaml:"showIcons" jsonschema:"deprecated"`
140- // If true, show tags alognside commit summary in the commits view.
141- ShowCommitTags bool `yaml:"showCommitTags"`
142140 // Nerd fonts version to use.
143141 // One of: '2' | '3' | empty string (default)
144142 // If empty, do not show icons.
@@ -339,6 +337,8 @@ type LogConfig struct {
339337 ShowGraph string `yaml:"showGraph" jsonschema:"deprecated,enum=always,enum=never,enum=when-maximised"`
340338 // displays the whole git graph by default in the commits view (equivalent to passing the `--all` argument to `git log`)
341339 ShowWholeGraph bool `yaml:"showWholeGraph"`
340+ // Configure this with `Log menu -> Show tags` (<c-l> in the commits window by default).
341+ ShowTags string `yaml:"showTags" jsonschema:"enum=always,enum=never,enum=when-maximised"`
342342}
343343
344344type CommitPrefixConfig struct {
@@ -772,7 +772,6 @@ func GetDefaultConfig() *UserConfig {
772772 ShowNumstatInFilesView : false ,
773773 ShowRandomTip : true ,
774774 ShowIcons : false ,
775- ShowCommitTags : true ,
776775 NerdFontsVersion : "" ,
777776 ShowFileIcons : true ,
778777 CommitAuthorShortLength : 2 ,
@@ -818,6 +817,7 @@ func GetDefaultConfig() *UserConfig {
818817 Order : "topo-order" ,
819818 ShowGraph : "always" ,
820819 ShowWholeGraph : false ,
820+ ShowTags : "always" ,
821821 },
822822 SkipHookPrefix : "WIP" ,
823823 MainBranches : []string {"master" , "main" },
0 commit comments