Last active
March 14, 2019 09:39
-
-
Save presidenten/f2e4046e61ca5300f8a7c6ba03433458 to your computer and use it in GitHub Desktop.
Sublime settings sync
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["shift+super+minus"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["shift+super+r"], "command": "find_all_under" }, | |
{ "keys": ["ctrl+o"], "command": "prompt_open_file" }, | |
{ | |
"keys": ["super+alt+l"], | |
"command": "jsbeautify", | |
"context": [{ | |
"key": "selector", | |
"operator": "equal", | |
"operand": "source.js,source.json,source.jade" | |
} | |
] | |
}, | |
{ "keys": ["super+shift+n"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }, | |
{ "keys": ["ctrl+alt+left"], "command": "jump_back" }, | |
{ "keys": ["ctrl+alt+right"], "command": "jump_forward" }, | |
{ | |
"keys": ["super+alt+l"], | |
"command": "jsbeautify", | |
"context": [{ | |
"key": "selector", | |
"operator": "equal", | |
"operand": "source.js,source.json,source.jade" | |
} | |
] | |
}, | |
{ "keys": ["shift+super+alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["shift+super+alt+down"], "command": "swap_line_down" }, | |
{ "keys": ["shift+super+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["super+alt+enter"], "command": "replace_all", "args": {"close_panel": true}, | |
"context": [{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"}] | |
}, | |
] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Agila Theme", | |
"ESLint-Formatter", | |
"Javascript Beautify", | |
"Package Control", | |
"SublimeLinter", | |
"Sync Settings" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment