Skip to content

Commit 5c6c1c8

Browse files
committed
feat: Reorder menu to mirror conflict markers and use Vim directions
1 parent 4eaec24 commit 5c6c1c8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

config.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,9 @@
256256
("n" "Next" smerge-next)
257257
("p" "Previous" smerge-prev)]
258258
["Keep"
259-
("u" "Your changes (on current branch) (upper)" smerge-keep-mine)
260-
("l" "Their changes (from incoming branch) (lower)" smerge-keep-other)
261-
("b" "Common ancestor (last shared commit) (base)" smerge-keep-base)
259+
("k" "Your changes (on current branch) (upper)" smerge-keep-upper)
260+
("h" "Common ancestor (last shared commit) (base)" smerge-keep-base)
261+
("j" "Their changes (from incoming branch) (lower)" smerge-keep-lower)
262262
("a" "All versions combined" smerge-keep-all)
263263
("RET" "Version at cursor position" smerge-keep-current)]
264264
["Compare"

config.org

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -471,9 +471,9 @@ A transient menu for resolving Git conflicts using =smerge-mode=. See also [[htt
471471
("n" "Next" smerge-next)
472472
("p" "Previous" smerge-prev)]
473473
["Keep"
474-
("u" "Your changes (on current branch) (upper)" smerge-keep-mine)
475-
("l" "Their changes (from incoming branch) (lower)" smerge-keep-other)
476-
("b" "Common ancestor (last shared commit) (base)" smerge-keep-base)
474+
("k" "Your changes (on current branch) (upper)" smerge-keep-upper)
475+
("h" "Common ancestor (last shared commit) (base)" smerge-keep-base)
476+
("j" "Their changes (from incoming branch) (lower)" smerge-keep-lower)
477477
("a" "All versions combined" smerge-keep-all)
478478
("RET" "Version at cursor position" smerge-keep-current)]
479479
["Compare"

0 commit comments

Comments
 (0)