How to jump previous or next position in Sublime Text 2?

Solution 1:

There's a plugin, described here, that adds navigation history.

Copy the Python script in your Packages directory.

Then add these lines to your key bindings configuration file, to have Visual Studio like binding:

{ "keys": ["ctrl+minus"], "command": "navigation_history_back"},
{ "keys": ["ctrl+="], "command": "navigation_history_forward"}

Solution 2:

I know this question is asked long time back. But I will anyway answer for future reference.

This is already integrated in Sublime Text 3 now. Shortcut keys are,

Shift + Alt + Minus = Jump Back Alt + Minus = Jump Forward.

This is discussed in this stackoverflow thread

Solution 3:

Here is the best answer for Linux and Windows users.

[
  { "keys": ["alt+left"], "command": "jump_back" },
  { "keys": ["alt+right"], "command": "jump_forward" }
]