Home | History | Annotate | Download | only in idlelib

Lines Matching refs:keyset

1345         as far as the dialog is concerned. Any keyset can be used as the
1346 base for a new custom keyset, stored in .idlerc/config-keys.cfg.
1348 Function load_key_cfg() initializes tk variables and keyset
1349 lists and calls load_keys_list for the current keyset.
1352 are from a builtin or custom keyset. DynOptionMenus builtinlist
1358 a custom keyset from idleConf.userCfg['keys'] and changes. Button
1360 get_new_keys_name() and create_new_key_set() to save a custom keyset
1364 selected keyset. The keybindings are loaded in load_keys_list()
1373 current keyset for the binding event item that was selected. The
1377 changed, nothing happens. If the keys are changed and the keyset
1379 for input of a custom keyset name. If no name is given, then the
1381 a custom name is entered in the prompt or if the current keyset was
1394 create_new_key_set: Combine active keyset and changes.
1505 # Load available keyset option menus.
1525 # Load keyset element list.
1654 Copy the bindings/keys from the previously active keyset
1655 to the new keyset and activate the new custom keyset.
1690 keyset = idleConf.GetKeySet(keyset_name)
1691 bind_names = list(keyset.keys())
1695 key = ' '.join(keyset[bind_name])
1708 def save_new_key_set(keyset_name, keyset):
1711 Add keyset to idleConf.userCfg['keys'], not to disk.
1712 If the keyset doesn't exist, it is created. The
1713 binding/keys are taken from the keyset argument.
1716 keyset - dictionary containing the new keybindings
1720 for event in keyset:
1721 value = keyset[event]