Skip to content

Commit 262e7f4

Browse files
authored
Change keybinding of "keep" item in Merge Conflict menu back to 'k' (#5132)
Now that we can use 'k' as a menu item binding (this was fixed in #5131), use it for the "keep" entry in the merge menu. I don't think this will be a problem for people's muscle memory, given that this menu is not encountered every day; and it's simply the better keybinding. This reverts commit b32b552.
2 parents 70fe7bd + 6043eb5 commit 262e7f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/gui/controllers/files_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ func (self *FilesController) handleNonInlineConflict(file *models.File) error {
585585
OnPress: func() error {
586586
return handle(self.c.Git().WorkingTree.StageFile, self.c.Tr.Actions.ResolveConflictByKeepingFile)
587587
},
588-
Key: 'p',
588+
Key: 'k',
589589
}
590590
deleteItem := &types.MenuItem{
591591
Label: self.c.Tr.MergeConflictDeleteFile,

0 commit comments

Comments
 (0)