File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8080 showIcons : false # deprecated: use nerdFontsVersion instead
8181 nerdFontsVersion : " " # nerd fonts version to use ("2" or "3"); empty means don't show nerd font icons
8282 showFileIcons : true # for hiding file icons in the file views
83- commitHashLength : 8 # length of commit ID/ref ( hash) in commits view
83+ commitHashLength : 8 # length of commit hash in commits view
8484 commandLogSize : 8
8585 splitDiff : ' auto' # one of 'auto' | 'always'
8686 skipRewordInEditorWarning : false # for skipping the confirmation before launching the reword editor
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ type GuiConfig struct {
123123 NerdFontsVersion string `yaml:"nerdFontsVersion" jsonschema:"enum=2,enum=3,enum="`
124124 // If true (default), file icons are shown in the file views. Only relevant if NerdFontsVersion is not empty.
125125 ShowFileIcons bool `yaml:"showFileIcons"`
126- // Length of commit ID/ref ( hash) in commits view.
127- CommitHashLength int `yaml:"commitHashLength" jsonschema:"minimum=1,maximum=12 "`
126+ // Length of commit hash in commits view.
127+ CommitHashLength int `yaml:"commitHashLength" jsonschema:"minimum=1,maximum=40 "`
128128 // If true, show commit hashes alongside branch names in the branches view.
129129 ShowBranchCommitHash bool `yaml:"showBranchCommitHash"`
130130 // Height of the command log view
Original file line number Diff line number Diff line change 311311 },
312312 "commitHashLength" : {
313313 "type" : " integer" ,
314- "maximum" : 12 ,
314+ "maximum" : 40 ,
315315 "minimum" : 1 ,
316- "description" : " Length of commit ID/ref ( hash) in commits view." ,
316+ "description" : " Length of commit hash in commits view." ,
317317 "default" : 8
318318 },
319319 "showBranchCommitHash" : {
You can’t perform that action at this time.
0 commit comments