Skip to content

Commit 9912cb5

Browse files
authored
Merge branch 'master' into feat/preferRemotes
2 parents 38601af + 13e9e1d commit 9912cb5

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

Diff for: docs/Config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ git:
331331
branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --
332332

333333
# Command used to display git log of all branches in the main window.
334-
# Deprecated: User `allBranchesLogCmds` instead.
334+
# Deprecated: Use `allBranchesLogCmds` instead.
335335
allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
336336

337337
# If true, do not spawn a separate process when using GPG

Diff for: pkg/config/user_config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ type GitConfig struct {
242242
// Command used when displaying the current branch git log in the main window
243243
BranchLogCmd string `yaml:"branchLogCmd"`
244244
// Command used to display git log of all branches in the main window.
245-
// Deprecated: User `allBranchesLogCmds` instead.
245+
// Deprecated: Use `allBranchesLogCmds` instead.
246246
AllBranchesLogCmd string `yaml:"allBranchesLogCmd"`
247247
// Commands used to display git log of all branches in the main window, they will be cycled in order of appearance
248248
AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"`

Diff for: pkg/gui/keybindings.go

+6-12
Original file line numberDiff line numberDiff line change
@@ -193,18 +193,6 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
193193
Tooltip: self.c.Tr.OpenCommandLogMenuTooltip,
194194
OpensMenu: true,
195195
},
196-
{
197-
ViewName: "secondary",
198-
Key: gocui.MouseWheelUp,
199-
Modifier: gocui.ModNone,
200-
Handler: self.scrollUpSecondary,
201-
},
202-
{
203-
ViewName: "secondary",
204-
Key: gocui.MouseWheelDown,
205-
Modifier: gocui.ModNone,
206-
Handler: self.scrollDownSecondary,
207-
},
208196
{
209197
ViewName: "main",
210198
Key: gocui.MouseWheelDown,
@@ -219,6 +207,12 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
219207
Description: self.c.Tr.ScrollUp,
220208
Alternative: "fn+down",
221209
},
210+
{
211+
ViewName: "secondary",
212+
Key: gocui.MouseWheelDown,
213+
Modifier: gocui.ModNone,
214+
Handler: self.scrollDownSecondary,
215+
},
222216
{
223217
ViewName: "secondary",
224218
Key: gocui.MouseWheelUp,

Diff for: schema/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
},
617617
"allBranchesLogCmd": {
618618
"type": "string",
619-
"description": "Command used to display git log of all branches in the main window.\nDeprecated: User `allBranchesLogCmds` instead.",
619+
"description": "Command used to display git log of all branches in the main window.\nDeprecated: Use `allBranchesLogCmds` instead.",
620620
"default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium"
621621
},
622622
"allBranchesLogCmds": {

0 commit comments

Comments
 (0)