-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgoogle-docs.py
380 lines (379 loc) · 16.3 KB
/
google-docs.py
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
from talon.voice import Context, Key, press
from talon import ctrl
titles = ('- Google Docs', '- Google Sheets', '- Google Slides')
ctx = Context('google_docs', func=lambda app, win: win.title.endswith(titles))
ctx.keymap({
'copy': Key('cmd+c'),
'cut': Key('cmd+x'),
'paste': Key('cmd+v'),
'paste without formatting': Key('cmd+shift+v'),
'undo': Key('cmd+z'),
'redo': Key('cmd+shift+z'),
'insert or edit link': Key('cmd+k'),
'open link': Key('alt+enter'),
'show common keyboard shortcuts': Key('cmd+/'),
'save every change is automatically saved in drive': Key('cmd+s'),
'print': Key('cmd+p'),
'open': Key('cmd+o'),
'find': Key('cmd+f'),
'find and replace': Key('cmd+shift+h'),
'find again': Key('cmd+g'),
'find previous': Key('cmd+shift+g'),
'hide the menus ': Key('ctrl+shift+f'),
'insert page break': Key('cmd+enter'),
'search the menus': Key('alt+/'),
'bold': Key('cmd+b'),
'italicize': Key('cmd+i'),
'underline': Key('cmd+u'),
'strikethrough': Key('cmd+shift+x'),
'superscript': Key('cmd+.'),
'subscript': Key('cmd+,'),
'copy text formatting': Key('cmd+alt+c'),
'paste text formatting': Key('cmd+alt+v'),
'clear text formatting': Key('cmd+\\'),
'increase font size': Key('cmd+shift+>'),
'decrease font size': Key('cmd+shift+<'),
'increase paragraph indentation': Key('cmd+]'),
'decrease paragraph indentation': Key('cmd+['),
'apply normal text style': Key('cmd+alt+o'),
'apply heading style 1': Key('cmd+alt+1'),
'apply heading style 2': Key('cmd+alt+2'),
'apply heading style 3': Key('cmd+alt+3'),
'apply heading style 4': Key('cmd+alt+4'),
'apply heading style 5': Key('cmd+alt+5'),
'apply heading style 6': Key('cmd+alt+6'),
'left align': Key('cmd+shift+l'),
'center align': Key('cmd+shift+e'),
'right align': Key('cmd+shift+r'),
'justify': Key('cmd+shift+j'),
'numbered list': Key('cmd+shift+7'),
'bulleted list': Key('cmd+shift+8'),
'resize larger': Key('cmd+ctrl+k'),
'resize larger horizontally': Key('cmd+ctrl+b'),
'resize larger vertically': Key('cmd+ctrl+i'),
'resize smaller': Key('cmd+ctrl+j'),
'resize smaller horizontally': Key('cmd+ctrl+w'),
'resize smaller vertically': Key('cmd+ctrl+q'),
'rotate clockwise by 15 degree': Key('alt+right'),
'rotate counterclockwise by 15 degree': Key('alt+left'),
'rotate counterclockwise by 1 degree': Key('alt+shift+left'),
'rotate clockwise by 1 degree': Key('alt+shift+right'),
'close drawing editor': Key('cmd+esc'),
'insert comment': Key('cmd+alt+m'),
'open discussion thread': Key('cmd+alt+shift+a'),
'enter current comment': Key('ctrl+enter'),
'insert footnote': Key('cmd+alt+f'),
'move to current footnote': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('e'), press('f'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next footnote': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('f'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous footnote': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('f'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'context menu': Key('cmd+shift+\\'),
'file menu': Key('ctrl+alt+f'),
'edit menu': Key('ctrl+alt+e'),
'view menu': Key('ctrl+alt+v'),
'insert menu': Key('ctrl+alt+i'),
'format menu': Key('ctrl+alt+o'),
'tools menu': Key('ctrl+alt+t'),
'table menu': Key('ctrl+alt+b'),
'help menu': Key('ctrl+alt+h'),
'accessibility menu': Key('ctrl+alt+a'),
'input tools menu': Key('cmd+alt+shift+k'),
'toggle input controls': Key('cmd+shift+k'),
'select all': Key('cmd+a'),
'extend selection one character left': Key('shift+left'),
'extend selection one character right': Key('shift+right'),
'extend selection one line up': Key('shift+up'),
'extend selection one line down': Key('shift+down'),
'extend selection to the beginning of the line': Key('shift+home'),
'extend selection one paragraph up': Key('alt+shift+up'),
'extend selection one paragraph down': Key('alt+shift+down'),
'extend selection to the end of the line': Key('shift+end'),
'extend selection to the beginning of the document': Key('cmd+shift+up'),
'extend selection to the end of the document': Key('cmd+shift+down'),
'select current list item': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('e'), press('i'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'select all list items at current level': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('e'), press('o'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'enable screen reader supportlearn more about using google docs with a screen reader': Key('alt+cmd+z'),
'speak selection': Key('ctrl+cmd+x'),
'speak from cursor location': Key('ctrl+cmd+r'),
'announce cursor location': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('a'), press('l'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'announce formatting at cursor location': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('a'), press('f'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'speak the table column and row header': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('h'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'speak the table cell location': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('n'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'speak the table row header': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('r'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'speak the table column header': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('c'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to next heading': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('h'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('h'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 1': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('1'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 2': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('2'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 3': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('3'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 4': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('4'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 5': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('5'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next heading 6': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('6'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 1': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('1'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 2': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('2'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 3': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('3'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 4': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('4'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 5': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('5'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous heading 6': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('6'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next media': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('g'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous media': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('g'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next list': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('o'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous list': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('o'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next item in the current list': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('i'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous item in the current list': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('i'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next link': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('l'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous link': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('l'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next bookmark': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('b'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous bookmark': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('b'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to next formatting change': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('w'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to previous formatting change': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('w'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to the next edit': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('n'), press('r'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to the previous edit': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('p'), press('r'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move to the start of the table': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('s'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the end of the table': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('d'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the start of the table column': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('i'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the end of the table column': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('k'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the next table column': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('b'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the previous table column': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('v'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the start of the table row': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('j'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the end of the table row': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('l'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the next table row': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('m'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the previous table row': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('g'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'exit table': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('t'), press('e'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the next table': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('n'), press('t'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'move to the previous table': lambda m: (
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, down=True),
press('p'), press('t'),
ctrl.key_press('shift', ctrl=True, cmd=True, shift=True, up=True),
),
'open revision history': Key('cmd+alt+shift+h'),
'open explore tool': Key('cmd+alt+shift+i'),
'open dictionary': Key('cmd+shift+y'),
'word count': Key('cmd+shift+c'),
'start voice typing': Key('cmd+shift+s'),
'page up': Key('pageup'),
'page down': Key('pagedown'),
'move to next misspelling': Key('cmd+\''),
'move to previous misspelling': Key('cmd+;'),
'insert or move to header': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('o'), press('h'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'insert or move to footer': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('o'), press('f'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move focus to popup': lambda m: (
ctrl.key_press('cmd', ctrl=True, cmd=True, down=True),
press('e'), press('p'),
ctrl.key_press('cmd', ctrl=True, cmd=True, up=True),
),
'move focus out of document text': Key('cmd+alt+shift+m'),
'return focus to document text': Key('esc'),
'focus containing webpage': Key('ctrl+shift+esc'),
})