forked from OfficeDev/Office-Add-in-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortcuts.json
51 lines (50 loc) · 1.13 KB
/
shortcuts.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
{
"actions": [
{
"id": "ShowTaskpane",
"type": "ExecuteFunction",
"name": "Show task pane for add-in"
},
{
"id": "HideTaskpane",
"type": "ExecuteFunction",
"name": "Hide task pane for add-in"
},
{
"id": "RunAction",
"type": "ExecuteFunction",
"name": "Run an action specific to the Office host"
},
{
"id": "TestConflict",
"type": "ExecuteFunction",
"name": "Test the conflict dialog"
}
],
"shortcuts": [
{
"action": "ShowTaskpane",
"key": {
"default": "Ctrl+Alt+1"
}
},
{
"action": "HideTaskpane",
"key": {
"default": "Ctrl+Alt+2"
}
},
{
"action": "RunAction",
"key": {
"default": "Ctrl+Alt+3"
}
},
{
"action": "TestConflict",
"key": {
"default": "Ctrl+R"
}
}
]
}