-
Notifications
You must be signed in to change notification settings - Fork 5
/
Default.sublime-keymap
37 lines (37 loc) · 1.32 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
[
{
"description": "Swaps the layers backwards.",
"keys": ["f7"], "command": "better_bookmarks",
"args": {"direction": "prev", "subcommand": "layer_swap"}
},
{
"description": "Swaps the layers forwards.",
"keys": ["f8"], "command": "better_bookmarks",
"args": {"direction": "next", "subcommand": "layer_swap"}
},
{
"description": "Moves the viewport to the previous bookmark in the current visible layer.",
"keys": ["f9"], "command": "better_bookmarks",
"args": {"subcommand": "cycle_mark", "direction": "prev"}
},
{
"description": "Moves the viewport to the next bookmark in the current visible layer.",
"keys": ["f10"], "command": "better_bookmarks",
"args": {"subcommand": "cycle_mark", "direction": "next"}
},
{
"description": "Adds a single bookmark to the current visible layer.",
"keys": ["f11"], "command": "better_bookmarks",
"args": {"subcommand": "mark_line"}
},
{
"description": "Removes all marks in the current visible layer.",
"keys": ["f12"], "command": "better_bookmarks",
"args": {"subcommand": "clear_marks"}
},
{
"description": "Removes all marks from ALL layers.",
"keys": ["shift+f12"], "command": "better_bookmarks",
"args": {"subcommand": "clear_all"}
}
]