@@ -54,7 +54,7 @@ type GuiConfig struct {
54
54
AuthorColors map [string ]string `yaml:"authorColors"`
55
55
// See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color
56
56
// Deprecated: use branchColorPatterns instead
57
- BranchColors map [string ]string `yaml:"branchColors"`
57
+ BranchColors map [string ]string `yaml:"branchColors" jsonschema:"deprecated" `
58
58
// See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color
59
59
BranchColorPatterns map [string ]string `yaml:"branchColorPatterns"`
60
60
// The number of lines you scroll by when scrolling the main window
@@ -131,7 +131,7 @@ type GuiConfig struct {
131
131
// If true, show jump-to-window keybindings in window titles.
132
132
ShowPanelJumps bool `yaml:"showPanelJumps"`
133
133
// Deprecated: use nerdFontsVersion instead
134
- ShowIcons bool `yaml:"showIcons"`
134
+ ShowIcons bool `yaml:"showIcons" jsonschema:"deprecated" `
135
135
// Nerd fonts version to use.
136
136
// One of: '2' | '3' | empty string (default)
137
137
// If empty, do not show icons.
@@ -252,7 +252,7 @@ type GitConfig struct {
252
252
BranchLogCmd string `yaml:"branchLogCmd"`
253
253
// Command used to display git log of all branches in the main window.
254
254
// Deprecated: Use `allBranchesLogCmds` instead.
255
- AllBranchesLogCmd string `yaml:"allBranchesLogCmd"`
255
+ AllBranchesLogCmd string `yaml:"allBranchesLogCmd" jsonschema:"deprecated" `
256
256
// Commands used to display git log of all branches in the main window, they will be cycled in order of appearance (array of strings)
257
257
AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"`
258
258
// If true, do not spawn a separate process when using GPG
@@ -587,19 +587,19 @@ type OSConfig struct {
587
587
// Deprecated: use Edit instead. Note that semantics are different:
588
588
// EditCommand is just the command itself, whereas Edit contains a
589
589
// "{{filename}}" variable.
590
- EditCommand string `yaml:"editCommand,omitempty"`
590
+ EditCommand string `yaml:"editCommand,omitempty" jsonschema:"deprecated" `
591
591
592
592
// EditCommandTemplate is the command template for editing a file
593
593
// Deprecated: use EditAtLine instead.
594
- EditCommandTemplate string `yaml:"editCommandTemplate,omitempty"`
594
+ EditCommandTemplate string `yaml:"editCommandTemplate,omitempty" jsonschema:"deprecated" `
595
595
596
596
// OpenCommand is the command for opening a file
597
597
// Deprecated: use Open instead.
598
- OpenCommand string `yaml:"openCommand,omitempty"`
598
+ OpenCommand string `yaml:"openCommand,omitempty" jsonschema:"deprecated" `
599
599
600
600
// OpenLinkCommand is the command for opening a link
601
601
// Deprecated: use OpenLink instead.
602
- OpenLinkCommand string `yaml:"openLinkCommand,omitempty"`
602
+ OpenLinkCommand string `yaml:"openLinkCommand,omitempty" jsonschema:"deprecated" `
603
603
604
604
// CopyToClipboardCmd is the command for copying to clipboard.
605
605
// See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-command-for-copying-to-and-pasting-from-clipboard
0 commit comments