Sublime Text 3 – How to Go to Column by Its Number

sublime-text-3

How to go to row number n and column number m in sublime text3.

I can go to row by number. But can't find out how to move to column by its number on this row.

I need it because I got error reportings with fileName and 2 numbers: for example: 24:13. That means row 24 and column 13.

So I need to move to row 24 and column 13 fast without counting how many times I clicked on right arrow on my keyboard.

Best Answer

Just press ctrl+p (cmd+p on mac) to bring on "Goto Anything" palette, and then type colon, line number, colon, column number:

:24:13

You can also type filename first, and Sublime will move you straight to place in that file you need.

styles/main.css:24:13
Related Question