Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/presets/keyconfig/keymap_data/blender_default.py
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| ("wm.save_mainfile", {"type": 'S', "value": 'PRESS', "ctrl": True}, None), | ("wm.save_mainfile", {"type": 'S', "value": 'PRESS', "ctrl": True}, None), | ||||
| ("wm.save_as_mainfile", {"type": 'S', "value": 'PRESS', "shift": True, "ctrl": True}, None), | ("wm.save_as_mainfile", {"type": 'S', "value": 'PRESS', "shift": True, "ctrl": True}, None), | ||||
| ("wm.quit_blender", {"type": 'Q', "value": 'PRESS', "ctrl": True}, None), | ("wm.quit_blender", {"type": 'Q', "value": 'PRESS', "ctrl": True}, None), | ||||
| # Quick menu and toolbar | # Quick menu and toolbar | ||||
| op_menu("SCREEN_MT_user_menu", {"type": 'Q', "value": 'PRESS'}), | op_menu("SCREEN_MT_user_menu", {"type": 'Q', "value": 'PRESS'}), | ||||
| # Fast editor switching | # Fast editor switching | ||||
| ("screen.area_space_cycle", {"type": 'F1', "value": 'PRESS', "ctrl": True}, {"properties": [("direction", 'BACK')]}), | |||||
| ("screen.area_space_cycle", {"type": 'F2', "value": 'PRESS', "ctrl": True}, {"properties": [("direction", 'FORWARD')]}), | |||||
| *( | *( | ||||
| ("screen.space_type_set_or_cycle", | ("screen.space_type_set_or_cycle", | ||||
| {"type": k, "value": 'PRESS', "shift": True}, | {"type": k, "value": 'PRESS', "shift": True}, | ||||
| {"properties": [("space_type", t)]}) | {"properties": [("space_type", t)]}) | ||||
| for k, t in ( | for k, t in ( | ||||
| ('F1', 'FILE_BROWSER'), | ('F1', 'FILE_BROWSER'), | ||||
| ('F2', 'CLIP_EDITOR'), | ('F2', 'CLIP_EDITOR'), | ||||
| ('F3', 'NODE_EDITOR'), | ('F3', 'NODE_EDITOR'), | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||