-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtuisky.config.schema.json
83 lines (83 loc) · 1.85 KB
/
tuisky.config.schema.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"type": "object",
"properties": {
"num_columns": {
"type": "integer",
"minimum": 1
},
"keybindings": {
"$ref": "#/$defs/keybindings"
},
"watcher": {
"$ref": "#/$defs/watcher"
}
},
"required": [],
"$defs": {
"keybindings": {
"type": "object",
"properties": {
"global": {
"type": "object",
"patternProperties": {
"^Ctrl-[a-z]$": {
"type": "string",
"enum": [
"NextFocus",
"PrevFocus",
"Quit"
]
}
},
"additionalProperties": false
},
"column": {
"type": "object",
"patternProperties": {
"^(Ctrl-[a-z]|Shift-[A-Z]|[ -@\\[-~]|Backspace|Enter|Left|Right|Up|Down|Home|End|PageUp|PageDown|Tab|BackTab|Delete|Insert|Esc)$": {
"type": "string",
"enum": [
"NextItem",
"PrevItem",
"Enter",
"Back",
"Refresh",
"NewPost",
"Menu"
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"watcher": {
"type": "object",
"properties": {
"intervals": {
"$ref": "#/$defs/watcher/intervals"
}
},
"intervals": {
"type": "object",
"properties": {
"preferences": {
"type": "integer",
"minimum": 1
},
"feed": {
"type": "integer",
"minimum": 1
},
"post_thread": {
"type": "integer",
"minimum": 1
}
},
"additionalProperties": false
},
"additionalProperties": false
}
}
}