Exemplo n.º 1
0
 def print_shortcuts(verbose=False):
     """Print all current shorcuts."""
     _dict = getScriptingMenuNamingShortKey()
     for k in _dict:
         name, key = _dict[k]
         print(_dict[k][key], _dict[k][name], end=' ')
         if verbose: print(k, os.path.exists(k), end=' ')
         print()
     print()
Exemplo n.º 2
0
 def print_shortcuts(verbose=False):
     '''Print all current shorcuts.'''
     _dict = getScriptingMenuNamingShortKey()
     for k in _dict:
         name, key = _dict[k]
         print _dict[k][key], _dict[k][name],
         if verbose: print k, os.path.exists(k),
         print
     print
Exemplo n.º 3
0
 def get_shortcuts():
     '''Get RoboFont shortcuts as a dictionary.'''
     return getScriptingMenuNamingShortKey()
Exemplo n.º 4
0
 def get_shortcuts():
     """Get RoboFont shortcuts as a dictionary."""
     return getScriptingMenuNamingShortKey()