Sublime Forum

Sublime Merge Tool Keybindings

#1

Is it possible to remap Next and Previous conflict as well as use left and right to new keys as my custom key bindings seem to be ignored.

It could be I have the command names wrong as I just guessed them as I cant find them anywhere.

Im trying to replicate the keys I used in Kaleidoscope for years.

Thanks for any help.
Rob

[
{
“keys”: [“super+alt+down”],
“command”: “Next Conflict”,
“context”: [{“operator”: “equal”, “key”: “merge_mode”}]
}, {
“keys”: [“super+alt+up”],
“command”: “Prev Conflict”,
“context”: [{“operator”: “equal”, “key”: “merge_mode”}]
},
]

This is my sublime.keymap. also tried prev_conflict and next_conflict but no dice.

0 Likes

#2

The commands are "next_conflict" and "prev_conflict". You can see them in the default keymap for macOS:

	{ "keys": ["super+n"], "command": "next_conflict", "context": [{"key": "merge_mode"}] },
	{ "keys": ["super+shift+n"], "command": "prev_conflict", "context": [{"key": "merge_mode"}] },
0 Likes

#3

Weird I tried them first and nothing changed.

Also my default Keymap file is just a pair of empty brackets so don’t know what’s happened there.

0 Likes