by sublimeuser on Fri Feb 11, 2011 6:32 am
Edit: Working
{ "keys": ["enter"], "command": "insert", "args": {"characters": "\n"} },
{ "keys": ["shift+enter"], "command": "insert", "args": {"characters": "\n"} },
Both these lines were there. However, if numlock is on, non of them work.
If numlock is off, only shift+enter works to go to a new line.
I fixed it by changing shift + enter to just enter:
{ "keys": ["enter"], "command": "insert", "args": {"characters": "\n"} },
{ "keys": ["enter"], "command": "insert", "args": {"characters": "\n"} },
I removed the second entry and it's not needed. So just one question
now, how do i get enter to work while numpad is active instead of
being disabled?