Sublime Forum

Key binding for go to line

#1

Hello to everyone!

I’m trying to make a key binding for going directly to the line 10.

I did that:

{ "keys": "ctrl+alt+j"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":10"} },

And it works, but I always have to press the enter key. Does somebody know any way to go directly without press enter?

Thanks in advanced.

Regards,

0 Likes

#2

{ “keys”: “ctrl+alt+j”], “command”: “goto_line”, “args”: {“line”: “10”} },

0 Likes

#3

Thanks Tito!!!

This is exactly what I was looking for :smiley: Thank you!!!

0 Likes