TODO
This commit is contained in:
@ -5,6 +5,9 @@ import time
|
||||
# used as shared memory between commands
|
||||
# use this in your own commands
|
||||
commandBuffer = {
|
||||
'genericList':[],
|
||||
'genericListSource':'',
|
||||
'genericListSelection': 0,
|
||||
'clipboard':[],
|
||||
'currClipboard': 0,
|
||||
'Marks':{'1':None, '2':None, '3':None}
|
||||
|
@ -5,10 +5,15 @@ input = {
|
||||
'currInput': {},
|
||||
'prevInput': {},
|
||||
'currEvent': None,
|
||||
'firstEvent': {},
|
||||
'firstEvent': None
|
||||
'firstEvent': None,
|
||||
'currShortcutString': '',
|
||||
'consumeKey': False,
|
||||
'fenrirKey': ['82'],
|
||||
'keyForeward': False,
|
||||
'lastInputTime':time.time(),
|
||||
'oldNumLock': True,
|
||||
'newNumLock':True,
|
||||
'oldCapsLock':False,
|
||||
'newCapsLock':False
|
||||
}
|
||||
|
Reference in New Issue
Block a user