Skip to content

Instantly share code, notes, and snippets.

@resure
Created November 10, 2013 00:11
Show Gist options
  • Save resure/7391844 to your computer and use it in GitHub Desktop.
Save resure/7391844 to your computer and use it in GitHub Desktop.
sublimetext config files
[
{ "keys": ["home"], "command": "move_to", "args": {"to": "hardbol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "hardeol", "extend": false} },
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false}},
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false}},
{ "keys": ["ctrl+x","a"], "command": "select_all"},
{ "keys": ["ctrl+b"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+f"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+x", "f"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+\\"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+x", "n"], "command": "new_file" },
{ "keys": ["alt+b"], "command": "move", "args": {"by": "subwords", "forward": false}},
{ "keys": ["alt+f"], "command": "move", "args": {"by": "subword_ends", "forward": true}},
{ "keys": ["home"], "command": "move_to", "args": {"to": "hardbol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "hardeol", "extend": false} },
{ "keys": ["ctrl+ф"], "command": "move_to", "args": {"to": "bol", "extend": false}},
{ "keys": ["ctrl+у"], "command": "move_to", "args": {"to": "eol", "extend": false}},
{ "keys": ["ctrl+ч","ф"], "command": "select_all"},
{ "keys": ["ctrl+и"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+а"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+ч", "а"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
{ "keys": ["ctrl+з"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+\\"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+т"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+ч", "т"], "command": "new_file" },
{ "keys": ["alt+и"], "command": "move", "args": {"by": "subwords", "forward": false}},
{ "keys": ["alt+а"], "command": "move", "args": {"by": "subword_ends", "forward": true}},
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
]
{
"color_scheme": "Packages/Color Scheme - Default/Blackboard.tmTheme",
"font_size": 11,
"ignored_packages":
[
"Vintage",
"Vintageous"
],
"tab_size": 2,
"translateTabsToSpaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment