-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
39 lines (39 loc) · 1.17 KB
/
manifest.json
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
{
"required_api_version": "^2.0.0",
"name": "Notes NV",
"description": "Search, store and retrieve notes. Inspired by NotationalVelocity.",
"developer_name": "Peter Bakhirev",
"icon": "images/notes-nv.svg",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "search",
"type": "keyword",
"name": "Search notes",
"default_value": "nv"
},
{
"id": "notes-directory-path",
"type": "input",
"name": "Path to directory with notes",
"description": "Each note is stored in a separate text file.",
"default_value": "~/notes/"
},
{
"id": "file-extensions",
"type": "input",
"name": "Note file extensions",
"description": "Search will be limited to files with these extensions. Comma-separated list.",
"default_value": "txt,md"
},
{
"id": "open-note-command",
"type": "input",
"name": "Command to open a note file",
"description": "If empty, will use default app via xdg-open. Use {fn} as placeholder for the full path to the note file (if not specified, path will be passed as the last arg).",
"default_value": "gedit {fn}"
}
]
}