Sublime Text - Goto line and column
问题 Currently, the Go to line shortcut (CTRL+G in windows/linux) only allows to navigate to a specific line. It would be nice to optionally allow the column number to be specified after comma, e.g. :30,11 to go to line 30, column 11 Is there any plugin or custom script to achieve this? 回答1: Update 3 This is now part of Sublime Text 3 starting in build number 3080: Goto Anything supports :line:col syntax in addition to :line For example, you can use :30:11 to go to line 30, column 11. Update 1 -