From b5d4bdbd087ec355b6da9ba5bc83124b52ca0fbe Mon Sep 17 00:00:00 2001 From: Karim Khaleel Date: Sat, 22 Mar 2025 15:16:36 -0400 Subject: [PATCH] Remove deprecated configs from auto generated config.md --- docs/Config.md | 42 -------------------------- pkg/jsonschema/generate_config_docs.go | 4 +++ 2 files changed, 4 insertions(+), 42 deletions(-) diff --git a/docs/Config.md b/docs/Config.md index b96003808..421fbab53 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -40,10 +40,6 @@ gui: # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-author-color authorColors: {} - # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color - # Deprecated: use branchColorPatterns instead - branchColors: {} - # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color branchColorPatterns: {} @@ -200,9 +196,6 @@ gui: # If true, show jump-to-window keybindings in window titles. showPanelJumps: true - # Deprecated: use nerdFontsVersion instead - showIcons: false - # Nerd fonts version to use. # One of: '2' | '3' | empty string (default) # If empty, do not show icons. @@ -347,10 +340,6 @@ git: # Command used when displaying the current branch git log in the main window branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} -- - # Command used to display git log of all branches in the main window. - # Deprecated: Use `allBranchesLogCmds` instead. - allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium - # Commands used to display git log of all branches in the main window, they will be cycled in order of appearance (array of strings) allBranchesLogCmds: [] @@ -375,19 +364,6 @@ git: # Config for showing the log in the commits view log: - # One of: 'date-order' | 'author-date-order' | 'topo-order' | 'default' - # 'topo-order' makes it easier to read the git log graph, but commits may not - # appear chronologically. See https://git-scm.com/docs/ - # - # Deprecated: Configure this with `Log menu -> Commit sort order` ( in the commits window by default). - order: topo-order - - # This determines whether the git graph is rendered in the commits panel - # One of 'always' | 'never' | 'when-maximised' - # - # Deprecated: Configure this with `Log menu -> Show git graph` ( in the commits window by default). - showGraph: always - # displays the whole git graph by default in the commits view (equivalent to passing the `--all` argument to `git log`) showWholeGraph: false @@ -449,24 +425,6 @@ os: # Command for opening a link. Should contain "{{link}}". openLink: "" - # EditCommand is the command for editing a file. - # Deprecated: use Edit instead. Note that semantics are different: - # EditCommand is just the command itself, whereas Edit contains a - # "{{filename}}" variable. - editCommand: "" - - # EditCommandTemplate is the command template for editing a file - # Deprecated: use EditAtLine instead. - editCommandTemplate: "" - - # OpenCommand is the command for opening a file - # Deprecated: use Open instead. - openCommand: "" - - # OpenLinkCommand is the command for opening a link - # Deprecated: use OpenLink instead. - openLinkCommand: "" - # CopyToClipboardCmd is the command for copying to clipboard. # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-command-for-copying-to-and-pasting-from-clipboard copyToClipboardCmd: "" diff --git a/pkg/jsonschema/generate_config_docs.go b/pkg/jsonschema/generate_config_docs.go index d2a26b3da..f918b06c0 100644 --- a/pkg/jsonschema/generate_config_docs.go +++ b/pkg/jsonschema/generate_config_docs.go @@ -205,6 +205,10 @@ func recurseOverSchema(rootSchema, schema *jsonschema.Schema, parent *Node) { for pair := schema.Properties.Oldest(); pair != nil; pair = pair.Next() { subSchema := getSubSchema(rootSchema, schema, pair.Key) + if strings.Contains(strings.ToLower(subSchema.Description), "deprecated") { + continue + } + node := Node{ Name: pair.Key, Description: subSchema.Description,