Skip to content

Instantly share code, notes, and snippets.

@farhanrahmadi
Last active July 11, 2018 06:55
Show Gist options
  • Save farhanrahmadi/3b892b21d9a25705fb72c681f1dc2184 to your computer and use it in GitHub Desktop.
Save farhanrahmadi/3b892b21d9a25705fb72c681f1dc2184 to your computer and use it in GitHub Desktop.
key binding
[
{ "keys": ["alt+r"], "command": "reindent", "args": {"single_line": false}},
{ "keys": ["alt+z"], "command": "duplicate_line" },
{ "keys": ["alt+q"], "command": "run_macro_file", "args": {"file": "Packages/Default/Add Line.sublime-macro"} },
{ "keys": ["alt+e"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+w"], "command": "scroll_lines", "args": {"amount": 5.0 } },
{ "keys": ["alt+s"], "command": "scroll_lines", "args": {"amount": -5.0 } },
{ "keys": ["alt+`"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["alt+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["alt+d"], "command": "move_to", "args": {"to": "eol", "extend": false} },
]
setting
{
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
"font_size": 11,
"ignored_packages":
[
"Vintage"
],
"save_on_focus_lost": true,
"theme": "Agila Dracula.sublime-theme",
"word_wrap": "false"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment