mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-23 12:18:51 +02:00
Change null as the default return-alt1
This commit is contained in:
parent
6bf28d325f
commit
b6c73b3620
@ -113,7 +113,8 @@ keybinding:
|
|||||||
quit: 'q'
|
quit: 'q'
|
||||||
quit-alt1: '<c-c>' # alternative/alias of quit
|
quit-alt1: '<c-c>' # alternative/alias of quit
|
||||||
return: '<esc>' # return to previous menu, will quit if there's nowhere to return
|
return: '<esc>' # return to previous menu, will quit if there's nowhere to return
|
||||||
return-alt1: ';' # When set to a printable character, this will work for returning from non-prompt panels
|
# When set to a printable character, this will work for returning from non-prompt panels
|
||||||
|
return-alt1: null
|
||||||
quitWithoutChangingDirectory: 'Q'
|
quitWithoutChangingDirectory: 'Q'
|
||||||
togglePanel: '<tab>' # goto the next panel
|
togglePanel: '<tab>' # goto the next panel
|
||||||
prevItem: '<up>' # go one line up
|
prevItem: '<up>' # go one line up
|
||||||
|
@ -425,6 +425,7 @@ func GetDefaultConfig() *UserConfig {
|
|||||||
Quit: "q",
|
Quit: "q",
|
||||||
QuitAlt1: "<c-c>",
|
QuitAlt1: "<c-c>",
|
||||||
Return: "<esc>",
|
Return: "<esc>",
|
||||||
|
ReturnAlt1: "",
|
||||||
QuitWithoutChangingDirectory: "Q",
|
QuitWithoutChangingDirectory: "Q",
|
||||||
TogglePanel: "<tab>",
|
TogglePanel: "<tab>",
|
||||||
PrevItem: "<up>",
|
PrevItem: "<up>",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user