mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-13 13:59:06 +02:00
added keybinding for fetchRemote
This commit is contained in:
parent
c507e5f562
commit
0d1230a959
@ -93,6 +93,7 @@ Default path for the config file: `~/.config/jesseduffield/lazygit/config.yml`
|
|||||||
fastForward: 'f' # fast-forward this branch from its upstream
|
fastForward: 'f' # fast-forward this branch from its upstream
|
||||||
pushTag: 'P'
|
pushTag: 'P'
|
||||||
setUpstream: 'u' # set as upstream of checked-out branch
|
setUpstream: 'u' # set as upstream of checked-out branch
|
||||||
|
fetchRemote: 'f'
|
||||||
commits:
|
commits:
|
||||||
squashDown: 's'
|
squashDown: 's'
|
||||||
renameCommit: 'r'
|
renameCommit: 'r'
|
||||||
|
@ -326,6 +326,7 @@ keybinding:
|
|||||||
fastForward: 'f'
|
fastForward: 'f'
|
||||||
pushTag: 'P'
|
pushTag: 'P'
|
||||||
setUpstream: 'u'
|
setUpstream: 'u'
|
||||||
|
fetchRemote: 'f'
|
||||||
commits:
|
commits:
|
||||||
squashDown: 's'
|
squashDown: 's'
|
||||||
renameCommit: 'r'
|
renameCommit: 'r'
|
||||||
|
@ -740,7 +740,7 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
|
|||||||
{
|
{
|
||||||
ViewName: "branches",
|
ViewName: "branches",
|
||||||
Contexts: []string{"remotes"},
|
Contexts: []string{"remotes"},
|
||||||
Key: 'f',
|
Key: gui.getKey("branches.fetchRemote"),
|
||||||
Modifier: gocui.ModNone,
|
Modifier: gocui.ModNone,
|
||||||
Handler: gui.handleFetchRemote,
|
Handler: gui.handleFetchRemote,
|
||||||
Description: gui.Tr.SLocalize("fetchRemote"),
|
Description: gui.Tr.SLocalize("fetchRemote"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user