It is very easy, so it allows perform cyclic navigation between search results.
If that option disabled we'll stuck up to top/bottom of document.
Ctrl+K, Ctrl+V
Ctrl + Shift + Backspace
Ctrl + K K (press K twice while Ctrl is pressed)
Ctrl + M
Ctrl + Shift + M
Crtl + Enter
Crtl + Shift + Enter
For some reason there is no file with settings for MoveTab
plugin.
So we need to use great PackageResourceViewer package and manually edit default file with sublime-keymap
. Just uncomment required fields. And enjoy tabs moving!
[
// Uncomment to enable.
// {
// "keys": ["ctrl+shift+end"],
// "command": "move_tab",
// "args": { "position": "999" }
// },
// {
// "keys": ["ctrl+shift+home"],
// "command": "move_tab",
// "args": { "position": "0" }
// },
{
"keys": ["ctrl+shift+pageup"],
"command": "move_tab",
"args": { "position": "-1" }
},
{
"keys": ["ctrl+shift+pagedown"],
"command": "move_tab",
"args": { "position": "+1" }
}
]
Ctrl + 0