-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzzz.dhall
105 lines (90 loc) · 2.19 KB
/
zzz.dhall
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
safetyLevel = "never_prompt",
offset = {
minutes = +540 -- minutes from UTC (can be negative or positive)
, summerOnly = False -- test
},
keymap = {
-- Immediately exits the program
quit = {
key = "c",
modifiers = ["ctrl"]
},
-- When pressed while editing a model via a form, persists that
-- model to disk and exits the form
save = {
key = "s",
modifiers = ["ctrl"]
},
-- Navigate up the hierarchy when viewing models, or exit a form
-- without saving changes
back = {
key = "esc",
modifiers = [] : List Text
},
-- Display the form for adding a model
add = {
key = "a",
modifiers = ["ctrl"]
},
-- Display the form for editing the selected model
edit = {
key = "e",
modifiers = ["ctrl"]
},
-- Delete the currently displayed model
delete = {
key = "d",
modifiers = ["ctrl"]
},
-- Cancel an active request
cancel = {
key = "x",
modifiers = ["ctrl"]
},
-- Send a request, or select an item in a list
submit = {
key = "enter",
modifiers = [] : List Text
},
-- Select the next widget on a page with multiple
focusNext = {
key = "tab",
modifiers = [] : List Text
},
-- Select the previous widget on a page with multiple
focusPrev = {
key = "backtab",
modifiers = [] : List Text
},
-- Scroll the response body display up, or navigate up
-- in a list
scrollUp = {
key = "up",
modifiers = [] : List Text
},
-- Scroll the response body display down, or navigate down
-- in a list
scrollDown = {
key = "down",
modifiers = [] : List Text
},
-- Displays the help screen
showHelp = {
key = "p",
modifiers = ["ctrl"]
},
-- Displays a screen from which you can search all defined
-- environments, projects, and request definitions
searchAll = {
key = "f",
modifiers = ["ctrl"]
},
-- Displays the environment list screen, from which environments
-- can be selected, added, and edited
showEnvironments = {
key = "u",
modifiers = ["ctrl"]
}
}
}