You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to switch to have paragraphs consistently on one line, and auto-wrap
them automatically when generating Config.md.
The changes to Config.md in this commit are temporary.
Copy file name to clipboardExpand all lines: docs/Config.md
+9-21Lines changed: 9 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,8 +94,7 @@ gui:
94
94
# If true, increase the height of the focused side window; creating an accordion effect.
95
95
expandFocusedSidePanel: false
96
96
97
-
# The weight of the expanded side panel, relative to the other panels. 2 means
98
-
# twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.
97
+
# The weight of the expanded side panel, relative to the other panels. 2 means twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.
99
98
expandedSidePanelWeight: 2
100
99
101
100
# Sometimes the main window is split in two (e.g. when the selected file has both staged and unstaged changes). This setting controls how the two sections are split.
@@ -111,9 +110,7 @@ gui:
111
110
# - 'top': split the window vertically (side panel on top, main view below)
112
111
enlargedSideViewLocation: left
113
112
114
-
# If true, wrap lines in the staging view to the width of the view. This
115
-
# makes it much easier to work with diffs that have long lines, e.g.
116
-
# paragraphs of markdown text.
113
+
# If true, wrap lines in the staging view to the width of the view. This makes it much easier to work with diffs that have long lines, e.g. paragraphs of markdown text.
117
114
wrapLinesInStagingView: true
118
115
119
116
# If true, hunk selection mode will be enabled by default when entering the staging view.
@@ -353,10 +350,7 @@ git:
353
350
# If true, pass the --all arg to git fetch
354
351
fetchAll: true
355
352
356
-
# If true, lazygit will automatically stage files that used to have merge
357
-
# conflicts but no longer do; and it will also ask you if you want to
358
-
# continue a merge or rebase if you've resolved all conflicts. If false, it
359
-
# won't do either of these things.
353
+
# If true, lazygit will automatically stage files that used to have merge conflicts but no longer do; and it will also ask you if you want to continue a merge or rebase if you've resolved all conflicts. If false, it won't do either of these things.
360
354
autoStageResolvedConflicts: true
361
355
362
356
# Command used when displaying the current branch git log in the main window
@@ -397,8 +391,7 @@ git:
397
391
# Config for showing the log in the commits view
398
392
log:
399
393
# One of: 'date-order' | 'author-date-order' | 'topo-order' | 'default'
400
-
# 'topo-order' makes it easier to read the git log graph, but commits may not
401
-
# appear chronologically. See https://git-scm.com/docs/
394
+
# 'topo-order' makes it easier to read the git log graph, but commits may not appear chronologically. See https://git-scm.com/docs/
402
395
#
403
396
# Can be changed from within Lazygit with `Log menu -> Commit sort order` (`<c-l>` in the commits window by default).
404
397
order: topo-order
@@ -422,8 +415,7 @@ git:
422
415
# Can be changed from within Lazygit with the Sort Order menu (`s`) in the remote branches panel.
423
416
remoteBranchSortOrder: date
424
417
425
-
# When copying commit hashes to the clipboard, truncate them to this
426
-
# length. Set to 40 to disable truncation.
418
+
# When copying commit hashes to the clipboard, truncate them to this length. Set to 40 to disable truncation.
427
419
truncateCopiedCommitHashesTo: 12
428
420
429
421
# Periodic update checks
@@ -455,12 +447,10 @@ os:
455
447
# Command for editing a file. Should contain "{{filename}}".
456
448
edit: ""
457
449
458
-
# Command for editing a file at a given line number. Should contain
459
-
# "{{filename}}", and may optionally contain "{{line}}".
450
+
# Command for editing a file at a given line number. Should contain "{{filename}}", and may optionally contain "{{line}}".
460
451
editAtLine: ""
461
452
462
-
# Same as EditAtLine, except that the command needs to wait until the
463
-
# window is closed.
453
+
# Same as EditAtLine, except that the command needs to wait until the window is closed.
464
454
editAtLineAndWait: ""
465
455
466
456
# Whether lazygit suspends until an edit process returns
@@ -469,12 +459,10 @@ os:
469
459
# For opening a directory in an editor
470
460
openDirInEditor: ""
471
461
472
-
# A built-in preset that sets all of the above settings. Supported presets
473
-
# are defined in the getPreset function in editor_presets.go.
462
+
# A built-in preset that sets all of the above settings. Supported presets are defined in the getPreset function in editor_presets.go.
474
463
editPreset: ""
475
464
476
-
# Command for opening a file, as if the file is double-clicked. Should
477
-
# contain "{{filename}}", but doesn't support "{{line}}".
465
+
# Command for opening a file, as if the file is double-clicked. Should contain "{{filename}}", but doesn't support "{{line}}".
478
466
open: ""
479
467
480
468
# Command for opening a link. Should contain "{{link}}".
// The weight of the expanded side panel, relative to the other panels. 2 means
93
-
// twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.
92
+
// The weight of the expanded side panel, relative to the other panels. 2 means twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.
// Sometimes the main window is split in two (e.g. when the selected file has both staged and unstaged changes). This setting controls how the two sections are split.
96
95
// Options are:
@@ -103,9 +102,7 @@ type GuiConfig struct {
103
102
// - 'left': split the window horizontally (side panel on the left, main view on the right)
104
103
// - 'top': split the window vertically (side panel on top, main view below)
// If true, wrap lines in the staging view to the width of the view. This
107
-
// makes it much easier to work with diffs that have long lines, e.g.
108
-
// paragraphs of markdown text.
105
+
// If true, wrap lines in the staging view to the width of the view. This makes it much easier to work with diffs that have long lines, e.g. paragraphs of markdown text.
// If true, lazygit will automatically stage files that used to have merge
259
-
// conflicts but no longer do; and it will also ask you if you want to
260
-
// continue a merge or rebase if you've resolved all conflicts. If false, it
261
-
// won't do either of these things.
255
+
// If true, lazygit will automatically stage files that used to have merge conflicts but no longer do; and it will also ask you if you want to continue a merge or rebase if you've resolved all conflicts. If false, it won't do either of these things.
Copy file name to clipboardExpand all lines: schema/config.json
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -341,7 +341,7 @@
341
341
},
342
342
"autoStageResolvedConflicts": {
343
343
"type": "boolean",
344
-
"description": "If true, lazygit will automatically stage files that used to have merge\nconflicts but no longer do; and it will also ask you if you want to\ncontinue a merge or rebase if you've resolved all conflicts. If false, it\nwon't do either of these things.",
344
+
"description": "If true, lazygit will automatically stage files that used to have merge conflicts but no longer do; and it will also ask you if you want to continue a merge or rebase if you've resolved all conflicts. If false, it won't do either of these things.",
345
345
"default": true
346
346
},
347
347
"branchLogCmd": {
@@ -437,7 +437,7 @@
437
437
},
438
438
"truncateCopiedCommitHashesTo": {
439
439
"type": "integer",
440
-
"description": "When copying commit hashes to the clipboard, truncate them to this\nlength. Set to 40 to disable truncation.",
440
+
"description": "When copying commit hashes to the clipboard, truncate them to this length. Set to 40 to disable truncation.",
441
441
"default": 12
442
442
}
443
443
},
@@ -543,7 +543,7 @@
543
543
},
544
544
"expandedSidePanelWeight": {
545
545
"type": "integer",
546
-
"description": "The weight of the expanded side panel, relative to the other panels. 2 means\ntwice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.",
546
+
"description": "The weight of the expanded side panel, relative to the other panels. 2 means twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.",
547
547
"default": 2
548
548
},
549
549
"mainPanelSplitMode": {
@@ -563,7 +563,7 @@
563
563
},
564
564
"wrapLinesInStagingView": {
565
565
"type": "boolean",
566
-
"description": "If true, wrap lines in the staging view to the width of the view. This\nmakes it much easier to work with diffs that have long lines, e.g.\nparagraphs of markdown text.",
566
+
"description": "If true, wrap lines in the staging view to the width of the view. This makes it much easier to work with diffs that have long lines, e.g. paragraphs of markdown text.",
567
567
"default": true
568
568
},
569
569
"useHunkModeInStagingView": {
@@ -1548,7 +1548,7 @@
1548
1548
"topo-order",
1549
1549
"default"
1550
1550
],
1551
-
"description": "One of: 'date-order' | 'author-date-order' | 'topo-order' | 'default'\n'topo-order' makes it easier to read the git log graph, but commits may not\nappear chronologically. See https://git-scm.com/docs/\n\nCan be changed from within Lazygit with `Log menu -\u003e Commit sort order` (`\u003cc-l\u003e` in the commits window by default).",
1551
+
"description": "One of: 'date-order' | 'author-date-order' | 'topo-order' | 'default'\n'topo-order' makes it easier to read the git log graph, but commits may not appear chronologically. See https://git-scm.com/docs/\n\nCan be changed from within Lazygit with `Log menu -\u003e Commit sort order` (`\u003cc-l\u003e` in the commits window by default).",
1552
1552
"default": "topo-order"
1553
1553
},
1554
1554
"showGraph": {
@@ -1603,11 +1603,11 @@
1603
1603
},
1604
1604
"editAtLine": {
1605
1605
"type": "string",
1606
-
"description": "Command for editing a file at a given line number. Should contain\n\"{{filename}}\", and may optionally contain \"{{line}}\"."
1606
+
"description": "Command for editing a file at a given line number. Should contain\"{{filename}}\", and may optionally contain \"{{line}}\"."
1607
1607
},
1608
1608
"editAtLineAndWait": {
1609
1609
"type": "string",
1610
-
"description": "Same as EditAtLine, except that the command needs to wait until the\nwindow is closed."
1610
+
"description": "Same as EditAtLine, except that the command needs to wait until the window is closed."
1611
1611
},
1612
1612
"editInTerminal": {
1613
1613
"type": "boolean",
@@ -1619,7 +1619,7 @@
1619
1619
},
1620
1620
"editPreset": {
1621
1621
"type": "string",
1622
-
"description": "A built-in preset that sets all of the above settings. Supported presets\nare defined in the getPreset function in editor_presets.go.",
1622
+
"description": "A built-in preset that sets all of the above settings. Supported presets are defined in the getPreset function in editor_presets.go.",
1623
1623
"examples": [
1624
1624
"vim",
1625
1625
"nvim",
@@ -1636,7 +1636,7 @@
1636
1636
},
1637
1637
"open": {
1638
1638
"type": "string",
1639
-
"description": "Command for opening a file, as if the file is double-clicked. Should\ncontain\"{{filename}}\", but doesn't support \"{{line}}\"."
1639
+
"description": "Command for opening a file, as if the file is double-clicked. Should contain\"{{filename}}\", but doesn't support \"{{line}}\"."
0 commit comments