Sublime Forum

Enter - Return Key not working

#1

Hey guys,

I just downloaded the Linux x64 package and ran it.
Whilst typing, I noticed I could not press the return
or enter key to add a new line or go to the new line.

Any fix for this?

Thanks

0 Likes

#2

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?

0 Likes

#3

What version are you using?

0 Likes

#4

This one: Sublime Text 2 Build 2020 x64

0 Likes