1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-25 00:46:54 +02:00

Simplify sorting of git tags by using git's functions

This commit is contained in:
Robert Verst
2021-06-01 18:07:46 +02:00
committed by Jesse Duffield
parent 94b52af661
commit cb78cf7de4
2 changed files with 3 additions and 66 deletions

View File

@ -39,7 +39,6 @@ type GuiConfig struct {
ShowRandomTip bool `yaml:"showRandomTip"`
ShowCommandLog bool `yaml:"showCommandLog"`
CommandLogSize int `yaml:"commandLogSize"`
SortTagsAscending bool `yaml:"sortTagsAscending"`
}
type ThemeConfig struct {
@ -308,7 +307,6 @@ func GetDefaultConfig() *UserConfig {
ShowFileTree: false,
ShowRandomTip: true,
CommandLogSize: 8,
SortTagsAscending: false,
},
Git: GitConfig{
Paging: PagingConfig{