Hotkey Config File Format
The config file is a plain text file that you edit on your computer and select in the add-on preferences file picker.
Defining Modes
:: default : config -> border_color=#0f0, border_width=10Defining Hotkeys
default < c : eval -> bpy.ops.mesh.primitive_cube_add()
sculpt < c : eval -> bpy.ops.wm.tool_set_by_id(name="builtin_brush.Crease")
# Subdivide, but don't exit Superkey afterward.
default @ < s : eval -> bpy.ops.mesh.subdivide()
# Switch the current space to the Image Editor in both default and sculpt mode.
default, sculpt < shift - i : switch_space -> IMAGE_EDITOR
# Snap cursor to selected.
default < ctrl + shift - s : eval -> bpy.ops.view3d.snap_cursor_to_selected()Valid Hotkey Commands
eval
exec (v1.1.0+)
viewport_shading
switch_space
cancel
Switching Modes
Last updated