In Vim and Vintage mode for SublimeText2, I can use Shift+J to join selected lines together. How does this work in vanilla SublimeText2 without Vintage using a shortcut?
I've looked at key bindings and I can see that there is a mapping for join_lines command:
{ "keys": ["ctrl+j"], "command": "join_lines" },
However, pressing the combination doesn't do anything, and menu item doesn't show the shortcut. What is the right way to map this shortcut and is there another shortcut that I might have missed?
EDIT
To clarify what I am trying to do, I am trying to get something like this:
if (condition) {
return;
}
to be joined like this:
if (condition) { return; }
(with or without spaces around return;.)
EDIT2
Not sure if this matters, but this is SublimeText2 on Linux.