-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathlauncher.json
More file actions
69 lines (69 loc) · 2.04 KB
/
Copy pathlauncher.json
File metadata and controls
69 lines (69 loc) · 2.04 KB
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
60
61
62
63
64
65
66
67
68
69
{
"items":
[ { "title": "Jump to Today’s note"
, "arg": "today_note.scpt"
, "keyword": "tn"
, "icon": { "path": "assets/icons/sticky-note.png" }
}
, { "title": "Previous note"
, "arg": "prev_note.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
, "anykey":
{ "key": "["
, "modifiers": ["⌘", "⇧"]
}
}
, { "title": "Go to link"
, "arg": "open_link.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
, "variables":
{ "filter_placeholder_title": "Choose the destination link..."
, "filter_script": "extract_links.scpt"
}
, "anykey":
{ "key": "g"
, "modifiers": ["⌥", "⇧"]
}
}
, { "title": "Next note"
, "arg": "next_note.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
, "anykey":
{ "key": "]"
, "modifiers": ["⌘", "⇧"]
}
}
, { "title": "Copy URL of selected note"
, "arg": "copy_note_url.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
}
, { "title": "Generate Vocabulary update"
, "arg": "generate_vocabulary_update.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
}
, { "title": "Move selected note(s)"
, "arg": "move_notes.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
, "variables":
{ "filter_placeholder_title": "Choose the destination folder..."
, "filter_script": "filter_destination_folders.scpt"
}
, "anykey":
{ "key": "m"
, "modifiers": ["⌥", "⇧"]
}
}
, { "title": "Selected text to OmniFocus task"
, "arg": "selection_to_omnifocus.scpt"
, "icon": { "path": "assets/icons/sticky-note.png" }
}
, { "title": "Link to a Note..."
, "arg": "link_note.scpt"
, "keyword": "n"
, "icon": { "path": "assets/icons/sticky-note.png" }
, "variables":
{ "filter_script": "fetch_notes.scpt"
}
}
]
}