-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
77 lines (74 loc) · 1.82 KB
/
config.py
File metadata and controls
77 lines (74 loc) · 1.82 KB
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
from pynput.keyboard import Key
languages = [ 'en-us', 'de', 'en-US', 'de-DE' ]
replacements = {
'equal': '=',
'equals': '=',
'equal spaced': ' = ',
'dash': '-',
'backtick': '`',
'dollar sign': '$',
'one': '1',
'two': '2',
'to': '2',
'three': '3',
'tree': '3',
'free': '3',
'for': '4',
'four': '4',
'five': '5',
'six': '6',
'seven': '7',
'eight': '8',
'nine': '9',
'ten': '10',
'eleven': '11',
'twelve': '12',
'thirteen': '13',
'fourteen': '14',
'fifteen': '15',
'twenty': '20',
'twentyfive': '25',
'get pull': 'git pull',
'get paul': 'git pull',
'get push': 'git push',
'get checkout': 'git checkout',
'get branch': 'git branch -vv',
'git branch': 'git branch -vv',
'get status': 'git status',
'get log': 'git log',
'git cherry pick': 'git cherry-pick',
'get cherry-pick': 'git cherry-pick',
'get cherry pick': 'git cherry-pick',
'get fetch': 'git fetch',
'get rebase': 'git rebase',
'get push upstream': 'git push upstream',
'get push revamp': 'git push revamp',
'get stash': 'git stash',
'get stash pop': 'git stash pop',
'kids checkout': 'git checkout',
'kids status': 'git status',
'get this': 'git diff',
'get diff': 'git diff',
'get ad': 'git add',
'get remote': 'git remote',
'h.top': 'htop',
'c d': 'cd',
}
keys = {
'enter': Key.enter,
'center': Key.enter,
'hunter': Key.enter,
'wetter': Key.enter,
'space': Key.space,
'keyspace': Key.space,
'backspace': Key.backspace,
'arrow left': Key.left,
'arrow right': Key.right,
'arrow write': Key.right,
'arrow up': Key.up,
'arrow down': Key.down,
'tab': Key.tab,
'tabulator': Key.tab,
'page up': Key.page_up,
'page down': Key.page_down,
}