Skip to content

Instantly share code, notes, and snippets.

@PirosB3
Created February 25, 2013 14:45
Show Gist options
  • Save PirosB3/5030251 to your computer and use it in GitHub Desktop.
Save PirosB3/5030251 to your computer and use it in GitHub Desktop.
inside user sublime keymap vim binding also for switching tab!
[
{ "keys": ["ctrl+k"], "command": "move_group_focus",
"args": {"direction": "up"},
"context": [{"key": "setting.vintage_ctrl_keys"}, {"key": "setting.command_mode"}]
},
{ "keys": ["ctrl+j"], "command": "move_group_focus",
"args": {"direction": "down"},
"context": [{"key": "setting.vintage_ctrl_keys"}, {"key": "setting.command_mode"}]
},
{ "keys": ["ctrl+l"], "command": "move_group_focus",
"args": {"direction": "right"},
"context": [{"key": "setting.vintage_ctrl_keys"}, {"key": "setting.command_mode"}]
},
{ "keys": ["ctrl+h"], "command": "move_group_focus",
"args": {"direction": "left"},
"context": [{"key": "setting.vintage_ctrl_keys"}, {"key": "setting.command_mode"}]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment