sublime text key bindings : is there any way to navigate 'back' and 'forward'

864 Views Asked by At

in eclipse or vs or si, I can type alt+ to navigate to last view(back) or alt+ to next view(forward), is there any keyboard shortcut or plugin to do this in sublime text.
i tried searching in package control and nothing seems related

2

There are 2 best solutions below

2
On

You can define that behavior in the user key bindings.

Preferences -> Key Bindings - User

And then define there the combination of keys that you want. E.g. In this case, those commands would be Ctrl+4 and Ctrl+6

[
  { "keys": ["ctrl+6"], "command": "next_view" },
  { "keys": ["ctrl+4"], "command": "prev_view" }
]
0
On

This is an old question, but I wished to do the same. I found that such navigation can be configured in Sublime Text 3 via user key bindings:

Preferences -> Key Bindings - User

Include these { braced lines } in the [ array ]:

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

(For earlier versions of Sublime, there's an extension https://github.com/timjrobinson/SublimeNavigationHistory)