Add my Sublime keybinds and prefs.
This commit is contained in:
parent
4dc033fcf4
commit
52b0d1776d
2 changed files with 48 additions and 0 deletions
38
SublimeSnippets/Default (Windows).sublime-keymap
Normal file
38
SublimeSnippets/Default (Windows).sublime-keymap
Normal file
|
@ -0,0 +1,38 @@
|
|||
[
|
||||
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}},
|
||||
{ "keys": ["ctrl+shift+m"], "command": "toggle_minimap"},
|
||||
{ "keys": ["alt+shift+."], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" }},
|
||||
{ "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"}},
|
||||
|
||||
// Auto-pair backticks
|
||||
{ "keys": ["`"], "command": "insert_snippet", "args": {"contents": "`$0`"}, "context":
|
||||
[
|
||||
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
|
||||
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
|
||||
{ "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\\)|]|\\}|>|$|;)", "match_all": true },
|
||||
{ "key": "preceding_text", "operator": "not_regex_contains", "operand": "[`a-zA-Z0-9_]$", "match_all": true },
|
||||
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted.double", "match_all": true }
|
||||
]
|
||||
},
|
||||
{ "keys": ["`"], "command": "insert_snippet", "args": {"contents": "`${0:$SELECTION}`"}, "context":
|
||||
[
|
||||
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
|
||||
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
|
||||
]
|
||||
},
|
||||
{ "keys": ["`"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
|
||||
[
|
||||
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
|
||||
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
|
||||
{ "key": "following_text", "operator": "regex_contains", "operand": "^`", "match_all": true }
|
||||
]
|
||||
},
|
||||
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Left Right.sublime-macro"}, "context":
|
||||
[
|
||||
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
|
||||
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
|
||||
{ "key": "preceding_text", "operator": "regex_contains", "operand": "`$", "match_all": true },
|
||||
{ "key": "following_text", "operator": "regex_contains", "operand": "^`", "match_all": true }
|
||||
]
|
||||
}
|
||||
]
|
10
SublimeSnippets/Preferences.sublime-settings
Normal file
10
SublimeSnippets/Preferences.sublime-settings
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
|
||||
"font_face": "Consolas",
|
||||
"font_size": 9,
|
||||
"rulers":
|
||||
[
|
||||
80,
|
||||
100
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue