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
sublime text key bindings : is there any way to navigate 'back' and 'forward'
864 Views Asked by dexter At
2
There are 2 best solutions below
0

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)
You can define that behavior in the user key bindings.
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