Last active
May 17, 2020 01:26
-
-
Save mokanfar/5d950c066de1721e2c252f4d066f4eee to your computer and use it in GitHub Desktop.
sublime text settings json
This file contains hidden or 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
| { | |
| "auto_find_in_selection": true, | |
| "color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", | |
| "default_line_ending": "unix", | |
| "font_size": 14, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "theme": "Adaptive.sublime-theme" | |
| } |
This file contains hidden or 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
| [ | |
| { | |
| "keys": [ | |
| "ctrl+b" | |
| ], | |
| "command": "show_overlay", | |
| "args": { | |
| "overlay": "command_palette" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+shift+." | |
| ], | |
| "args": { | |
| "action": "balance_outward" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.balance_outward" | |
| } | |
| ] | |
| }, | |
| { "keys": ["f4"], "command": "noop" }, | |
| { | |
| "keys": [ | |
| "alt+shift+," | |
| ], | |
| "args": { | |
| "action": "balance_inward" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.balance_inward" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+alt+f1" | |
| ], | |
| "command": "sublime_bookmark", | |
| "args": { | |
| "type": "add" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+t" | |
| ], | |
| "args": { | |
| "action": "matching_pair" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.matching_pair" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+g" | |
| ], | |
| "command": "duplicate_line" | |
| }, | |
| { | |
| "keys": [ | |
| "alt+d" | |
| ], | |
| "command": "run_macro_file", "args": {"file": "Packages/Default/Delete line.sublime-macro"} | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+tab" | |
| ], | |
| "command": "next_view" | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+shift+tab" | |
| ], | |
| "command": "prev_view" | |
| }, | |
| { | |
| "keys": [ | |
| "alt+a" | |
| ], | |
| "command": "sublime_bookmark", | |
| "args": { | |
| "type": "add" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+r" | |
| ], | |
| "command": "sublime_bookmark", | |
| "args": { | |
| "type": "remove" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+=" | |
| ], | |
| "command": "sublime_bookmark", | |
| "args": { | |
| "type": "goto_next" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+-" | |
| ], | |
| "command": "sublime_bookmark", | |
| "args": { | |
| "type": "goto_previous" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+b" | |
| ], | |
| "command": "expand_selection", | |
| "args": { | |
| "to": "brackets" | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "alt+q" | |
| ], | |
| "command": "expand_selection_to_quotes" | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+e" | |
| ], | |
| "command": "expand_region" | |
| }, | |
| { | |
| "keys": [ | |
| "alt+shift+e" | |
| ], | |
| "command": "expand_region", | |
| "args": { | |
| "undo": true | |
| }, | |
| "context": [ | |
| { | |
| "key": "expand_region_soft_undo" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "alt+shift+a" | |
| ], | |
| "command": "align_tab", | |
| "args": { | |
| "live_preview": true | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "shift+backspace" | |
| ], | |
| "command": "toggle_side_bar" | |
| }, | |
| { "keys": ["alt+m"], "command": "set_mark" }, | |
| { "keys": ["alt+shift+m"], "command": "select_to_mark" }, | |
| { "keys": ["ctrl+shift+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard EOL.sublime-macro"} } | |
| ,{ | |
| "keys": [ | |
| "ctrl+." | |
| ], | |
| "args": { | |
| "action": "next_edit_point" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.next_edit_point" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+," | |
| ], | |
| "args": { | |
| "action": "prev_edit_point" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.prev_edit_point" | |
| } | |
| ] | |
| } | |
| , | |
| { | |
| "keys": [ | |
| "alt+r" | |
| ], | |
| "args": { | |
| "action": "remove_tag" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.remove_tag" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+shift+w" | |
| ], | |
| "command": "wrap_as_you_type", | |
| "context": [ | |
| { | |
| "operand": false, | |
| "operator": "equal", | |
| "match_all": true, | |
| "key": "setting.is_widget" | |
| }, | |
| { | |
| "match_all": true, | |
| "key": "emmet_action_enabled.wrap_as_you_type" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "alt+b" | |
| ], | |
| "command": "show_overlay", | |
| "args": { | |
| "overlay": "command_palette" | |
| } | |
| }, | |
| { "keys": ["alt+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
| { | |
| "command": "ace_jump_char" | |
| }, | |
| { "keys": ["alt+."], | |
| "command": "ace_jump_after" | |
| }, | |
| { | |
| "keys": [ | |
| "alt+forward_slash" | |
| ], | |
| "args": { | |
| "action": "toggle_comment" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "operand": "source.css, source.less, source.scss, text.xml, text.html - source", | |
| "operator": "equal", | |
| "match_all": true, | |
| "key": "selector" | |
| }, | |
| { | |
| "match_all": true, | |
| "key": "emmet_action_enabled.toggle_comment" | |
| } | |
| ] | |
| }, | |
| { | |
| "keys": [ | |
| "alt+." | |
| ], | |
| "args": { | |
| "action": "select_next_item" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.select_next_item" | |
| } | |
| ] | |
| }, | |
| { "keys": ["ctrl+shift+g"], "command": "wrap_as_you_type"}, | |
| { | |
| "keys": [ | |
| "alt+," | |
| ], | |
| "args": { | |
| "action": "select_previous_item" | |
| }, | |
| "command": "run_emmet_action", | |
| "context": [ | |
| { | |
| "key": "emmet_action_enabled.select_previous_item" | |
| } | |
| ] | |
| }, | |
| { "keys": ["ctrl+;"], "command": "noop" }, | |
| { "keys": ["ctrl+i"], "command": "move", "args": {"by": "pages", "forward": false} }, | |
| { "keys": ["ctrl+k"], "command": "move", "args": {"by": "pages", "forward": true} }, | |
| { "keys": ["ctrl+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
| { "keys": ["alt+shift+s"], "command": "save_project_as" }, | |
| { "keys": ["ctrl+shift+r"], "command": "prompt_select_workspace" }, | |
| { "keys": ["alt+minus"], "command": "jump_back" }, | |
| { "keys": ["alt+shift+minus"], "command": "jump_forward" }, | |
| //{ "keys": ["alt+l"], "command": "run_macro_file", "args": { "file": "Packages/User/consoleLogMacro3.sublime-macro" } } | |
| { | |
| "keys": [ | |
| "alt+l" | |
| ], | |
| "command": "run_multiple_commands", | |
| "args": { | |
| "commands": [ | |
| { | |
| "command": "run_macro_file", | |
| "args": { "file": "Packages/User/consoleLogMacro3.sublime-macro" }, | |
| }, | |
| { | |
| "command": "save" | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "keys": [ | |
| "ctrl+enter" | |
| ], | |
| "command": "run_multiple_commands", | |
| "args": { | |
| "commands": [ | |
| { | |
| "command": "run_macro_file", | |
| "args": { "file": "Packages/User/consoleLogMacro3.sublime-macro" }, | |
| }, | |
| { | |
| "command": "save" | |
| } | |
| ] | |
| } | |
| } | |
| ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment