forked from ziglang/sublime-zig-language
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Default (OSX).sublime-keymap
37 lines (37 loc) · 1.09 KB
/
Default (OSX).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
[
{ "keys": ["super+shift+r"], "command": "zig_build_last_target" },
{ "keys": ["super+shift+alt+r"], "command": "zig_get_build_target" },
{
// fix unused variable
"keys": ["super+shift+m"],
"command": "multicommand",
"args": {
"commands": [
{ "command": "find_under_expand" },
{ "command": "copy" },
{ "command": "move_to", "args": {"to": "eol"} },
{ "command": "insert", "args": {"characters": "\n"} },
{ "command": "insert", "args": {"characters": "_ = "} },
{ "command": "paste" },
{ "command": "insert", "args": {"characters": ";"} },
]
}
},
{
// fix unused function parameter
"keys": ["super+shift+n"],
"command": "multicommand",
"args": {
"commands": [
{ "command": "find_under_expand" },
{ "command": "copy" },
{ "command": "move_to", "args": {"to": "brackets"} },
{ "command": "move_to", "args": {"to": "eol"} },
{ "command": "insert", "args": {"characters": "\n"} },
{ "command": "insert", "args": {"characters": "_ = "} },
{ "command": "paste" },
{ "command": "insert", "args": {"characters": ";"} },
]
}
}
]