-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-keymap
59 lines (59 loc) · 1.93 KB
/
Default.sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[
{ "keys": ["primary+#"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["primary+shift+#"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["primary+shift+-"], "command": "auto_docstring" },
{ "keys": ["primary+alt+shift+-"], "command": "auto_docstring_all" },
{
"keys": ["primary+shift+e"],
"command": "set_user_setting",
"args": {
"file": "Preferences.sublime-settings",
"setting": "dictionary",
"value": "Packages/Language - English/en_GB.dic"
}
},
{
"keys": ["primary+shift+d"],
"command": "set_user_setting",
"args": {
"file": "Preferences.sublime-settings",
"setting": "dictionary",
"value": "Packages/User/Dictionaries/German_de_DE.dic"
}
},
{
"keys": ["primary+shift+n"],
"command": "chain",
"args": {
"commands": [
["set_user_setting", {"file": "Preferences.sublime-settings", "setting": "rulers", "value": []}],
["set_user_setting", {"file": "Anaconda.sublime-settings", "setting": "pep8_max_line_length", "value": 255}],
]
}
},
{
"keys": ["primary+shift+s"],
"command": "chain",
"args": {
"commands": [
["set_user_setting", {"file": "Preferences.sublime-settings", "setting": "rulers", "value": [79]}],
["set_user_setting", {"file": "Anaconda.sublime-settings", "setting": "pep8_max_line_length", "value": 79}],
]
}
},
{
"keys": ["primary+shift+w"],
"command": "chain",
"args": {
"commands": [
["set_user_setting", {"file": "Preferences.sublime-settings", "setting": "rulers", "value": [99]}],
["set_user_setting", {"file": "Anaconda.sublime-settings", "setting": "pep8_max_line_length", "value": 99}],
]
}
},
{
"keys": ["primary+shift+x"],
"command": "lsp_code_actions",
"context": [{"key": "lsp.session_with_capability", "operand": "codeActionProvider"}]
},
]