1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +02:00

update keybindings

This commit is contained in:
Jesse Duffield 2018-08-08 20:53:14 +10:00
parent ca04655a09
commit 31a8be5f32
2 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,9 @@
space: toggle staged
c: commit changes
shift+S: stash files
o: open (osx only)
t: add patched (i.e. pick chunks of a file to add)
o: open
e: edit
s: open in sublime (requires 'subl' command)
v: open in vscode (requires 'code' command)
i: add to .gitignore

View File

@ -130,12 +130,12 @@ func renderfilesOptions(g *gocui.Gui, gitFile *GitFile) error {
"S": "stash files",
"c": "commit changes",
"o": "open",
"s": "sublime",
"v": "vscode",
"i": "ignore",
"d": "delete",
"space": "toggle staged",
"R": "refresh",
"t": "add patch",
"e": "edit",
}
if state.HasMergeConflicts {
optionsMap["a"] = "abort merge"