123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- :article_outdated: True
- .. meta::
- :keywords: cheatsheet, cheat sheet, shortcut
- .. _doc_default_key_mapping:
- Default editor shortcuts
- ========================
- Many of Godot Editor functions can be executed with keyboard shortcuts. This page
- lists functions which have associated shortcuts by default, but many others are
- available for customization in editor settings as well. To change keys associated
- with these and other actions navigate to ``Editor -> Editor Settings -> Shortcuts``.
- While some actions are universal, a lot of shortcuts are specific to individual
- tools. For this reason it is possible for some key combinations to be assigned
- to more than one function. The correct action will be performed depending on the
- context.
- .. note:: While Windows and Linux builds of the editor share most of the default settings,
- some shortcuts may differ for macOS version. This is done for better integration
- of the editor into macOS ecosystem. Users fluent with standard shortcuts on that
- OS should find Godot Editor's default key mapping intuitive.
- General Editor Actions
- ----------------------
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +=======================+===============================+==============================+==================================+
- | Open 2D Editor | :kbd:`Ctrl + F1` | :kbd:`Opt + 1` | ``editor/editor_2d`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Open 3D Editor | :kbd:`Ctrl + F2` | :kbd:`Opt + 2` | ``editor/editor_3d`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Open Script Editor | :kbd:`Ctrl + F3` | :kbd:`Opt + 3` | ``editor/editor_script`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Search Help | :kbd:`F1` | :kbd:`Opt + Space` | ``editor/editor_help`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Distraction Free Mode | :kbd:`Ctrl + Shift + F11` | :kbd:`Cmd + Ctrl + D` | ``editor/distraction_free_mode`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Next tab | :kbd:`Ctrl + Tab` | :kbd:`Cmd + Tab` | ``editor/next_tab`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Previous tab | :kbd:`Ctrl + Shift + Tab` | :kbd:`Cmd + Shift + Tab` | ``editor/prev_tab`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Filter Files | :kbd:`Ctrl + Alt + P` | :kbd:`Opt + Cmd + P` | ``editor/filter_files`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Open Scene | :kbd:`Ctrl + O` | :kbd:`Cmd + O` | ``editor/open_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Close Scene | :kbd:`Ctrl + Shift + W` | :kbd:`Cmd + Shift + W` | ``editor/close_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Reopen Closed Scene | :kbd:`Ctrl + Shift + T` | :kbd:`Cmd + Shift + T` | ``editor/reopen_closed_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Save Scene | :kbd:`Ctrl + S` | :kbd:`Cmd + S` | ``editor/save_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Save Scene As | :kbd:`Ctrl + Shift + S` | :kbd:`Cmd + Shift + S` | ``editor/save_scene_as`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Save All Scenes | :kbd:`Ctrl + Shift + Alt + S` | :kbd:`Cmd + Shift + Opt + S` | ``editor/save_all_scenes`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Quick Open | :kbd:`Shift + Alt + O` | :kbd:`Shift + Opt + O` | ``editor/quick_open`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Quick Open Scene | :kbd:`Ctrl + Shift + O` | :kbd:`Cmd + Shift + O` | ``editor/quick_open_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Quick Open Script | :kbd:`Ctrl + Alt + O` | :kbd:`Opt + Cmd + O` | ``editor/quick_open_script`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Undo | :kbd:`Ctrl + Z` | :kbd:`Cmd + Z` | ``editor/undo`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Redo | :kbd:`Ctrl + Shift + Z` | :kbd:`Cmd + Shift + Z` | ``editor/redo`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Quit | :kbd:`Ctrl + Q` | :kbd:`Cmd + Q` | ``editor/file_quit`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Quit to Project List | :kbd:`Ctrl + Shift + Q` | :kbd:`Shift + Opt + Q` | ``editor/quit_to_project_list`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Take Screenshot | :kbd:`Ctrl + F12` | :kbd:`Cmd + F12` | ``editor/take_screenshot`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Toggle Fullscreen | :kbd:`Shift + F11` | :kbd:`Cmd + Ctrl + F` | ``editor/fullscreen_mode`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Play | :kbd:`F5` | :kbd:`Cmd + B` | ``editor/play`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Pause Scene | :kbd:`F7` | :kbd:`Cmd + Ctrl + Y` | ``editor/pause_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Stop | :kbd:`F8` | :kbd:`Cmd + .` | ``editor/stop`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Play Scene | :kbd:`F6` | :kbd:`Cmd + R` | ``editor/play_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Play Custom Scene | :kbd:`Ctrl + Shift + F5` | :kbd:`Cmd + Shift + R` | ``editor/play_custom_scene`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- | Expand Bottom Panel | :kbd:`Shift + F12` | :kbd:`Shift + F12` | ``editor/bottom_panel_expand`` |
- +-----------------------+-------------------------------+------------------------------+----------------------------------+
- 2D / Canvas Item Editor
- -----------------------
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +==============================+=========================+========================+========================================================+
- | Zoom In | :kbd:`Ctrl + =` | :kbd:`Cmd + =` | ``canvas_item_editor/zoom_plus`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Zoom Out | :kbd:`Ctrl + -` | :kbd:`Cmd + -` | ``canvas_item_editor/zoom_minus`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Zoom Reset | :kbd:`Ctrl + 0` | :kbd:`Cmd + 0` | ``canvas_item_editor/zoom_reset`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Pan View | :kbd:`Space` | :kbd:`Space` | ``canvas_item_editor/pan_view`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Select Mode | :kbd:`Q` | :kbd:`Q` | ``canvas_item_editor/select_mode`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Move Mode | :kbd:`W` | :kbd:`W` | ``canvas_item_editor/move_mode`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Rotate Mode | :kbd:`E` | :kbd:`E` | ``canvas_item_editor/rotate_mode`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Scale Mode | :kbd:`S` | :kbd:`S` | ``canvas_item_editor/scale_mode`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Ruler Mode | :kbd:`R` | :kbd:`R` | ``canvas_item_editor/ruler_mode`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Use Smart Snap | :kbd:`Shift + S` | :kbd:`Shift + S` | ``canvas_item_editor/use_smart_snap`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Use Grid Snap | :kbd:`Shift + G` | :kbd:`Shift + G` | ``canvas_item_editor/use_grid_snap`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Multiply grid step by 2 | :kbd:`Num *` | :kbd:`Num *` | ``canvas_item_editor/multiply_grid_step`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Divide grid step by 2 | :kbd:`Num /` | :kbd:`Num /` | ``canvas_item_editor/divide_grid_step`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Always Show Grid | :kbd:`G` | :kbd:`G` | ``canvas_item_editor/show_grid`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Show Helpers | :kbd:`H` | :kbd:`H` | ``canvas_item_editor/show_helpers`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Show Guides | :kbd:`Y` | :kbd:`Y` | ``canvas_item_editor/show_guides`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Center Selection | :kbd:`F` | :kbd:`F` | ``canvas_item_editor/center_selection`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Frame Selection | :kbd:`Shift + F` | :kbd:`Shift + F` | ``canvas_item_editor/frame_selection`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Preview Canvas Scale | :kbd:`Ctrl + Shift + P` | :kbd:`Cmd + Shift + P` | ``canvas_item_editor/preview_canvas_scale`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Insert Key | :kbd:`Ins` | :kbd:`Ins` | ``canvas_item_editor/anim_insert_key`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Insert Key (Existing Tracks) | :kbd:`Ctrl + Ins` | :kbd:`Cmd + Ins` | ``canvas_item_editor/anim_insert_key_existing_tracks`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Make Custom Bones from Nodes | :kbd:`Ctrl + Shift + B` | :kbd:`Cmd + Shift + B` | ``canvas_item_editor/skeleton_make_bones`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- | Clear Pose | :kbd:`Shift + K` | :kbd:`Shift + K` | ``canvas_item_editor/anim_clear_pose`` |
- +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
- .. _doc_default_key_mapping_shortcuts_spatial_editor:
- 3D / Spatial Editor
- -------------------
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +====================================+=======================+======================+==================================================+
- | Toggle Freelook | :kbd:`Shift + F` | :kbd:`Shift + F` | ``spatial_editor/freelook_toggle`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Left | :kbd:`A` | :kbd:`A` | ``spatial_editor/freelook_left`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Right | :kbd:`D` | :kbd:`D` | ``spatial_editor/freelook_right`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Forward | :kbd:`W` | :kbd:`W` | ``spatial_editor/freelook_forward`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Backwards | :kbd:`S` | :kbd:`S` | ``spatial_editor/freelook_backwards`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Up | :kbd:`E` | :kbd:`E` | ``spatial_editor/freelook_up`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Down | :kbd:`Q` | :kbd:`Q` | ``spatial_editor/freelook_down`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Speed Modifier | :kbd:`Shift` | :kbd:`Shift` | ``spatial_editor/freelook_speed_modifier`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Freelook Slow Modifier | :kbd:`Alt` | :kbd:`Opt` | ``spatial_editor/freelook_slow_modifier`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Select Mode | :kbd:`Q` | :kbd:`Q` | ``spatial_editor/tool_select`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Move Mode | :kbd:`W` | :kbd:`W` | ``spatial_editor/tool_move`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Rotate Mode | :kbd:`E` | :kbd:`E` | ``spatial_editor/tool_rotate`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Scale Mode | :kbd:`R` | :kbd:`R` | ``spatial_editor/tool_scale`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Use Local Space | :kbd:`T` | :kbd:`T` | ``spatial_editor/local_coords`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Use Snap | :kbd:`Y` | :kbd:`Y` | ``spatial_editor/snap`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Snap Object to Floor | :kbd:`PgDown` | :kbd:`PgDown` | ``spatial_editor/snap_to_floor`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Top View | :kbd:`Num 7` | :kbd:`Num 7` | ``spatial_editor/top_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Bottom View | :kbd:`Alt + Num 7` | :kbd:`Opt + Num 7` | ``spatial_editor/bottom_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Front View | :kbd:`Num 1` | :kbd:`Num 1` | ``spatial_editor/front_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Rear View | :kbd:`Alt + Num 1` | :kbd:`Opt + Num 1` | ``spatial_editor/rear_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Right View | :kbd:`Num 3` | :kbd:`Num 3` | ``spatial_editor/right_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Left View | :kbd:`Alt + Num 3` | :kbd:`Opt + Num 3` | ``spatial_editor/left_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Switch Perspective/Orthogonal View | :kbd:`Num 5` | :kbd:`Num 5` | ``spatial_editor/switch_perspective_orthogonal`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Insert Animation Key | :kbd:`K` | :kbd:`K` | ``spatial_editor/insert_anim_key`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Focus Origin | :kbd:`O` | :kbd:`O` | ``spatial_editor/focus_origin`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Focus Selection | :kbd:`F` | :kbd:`F` | ``spatial_editor/focus_selection`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Align Transform with View | :kbd:`Ctrl + Alt + M` | :kbd:`Opt + Cmd + M` | ``spatial_editor/align_transform_with_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | Align Rotation with View | :kbd:`Ctrl + Alt + F` | :kbd:`Opt + Cmd + F` | ``spatial_editor/align_rotation_with_view`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 1 Viewport | :kbd:`Ctrl + 1` | :kbd:`Cmd + 1` | ``spatial_editor/1_viewport`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 2 Viewports | :kbd:`Ctrl + 2` | :kbd:`Cmd + 2` | ``spatial_editor/2_viewports`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 2 Viewports (Alt) | :kbd:`Ctrl + Alt + 2` | :kbd:`Opt + Cmd + 2` | ``spatial_editor/2_viewports_alt`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 3 Viewports | :kbd:`Ctrl + 3` | :kbd:`Cmd + 3` | ``spatial_editor/3_viewports`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 3 Viewports (Alt) | :kbd:`Ctrl + Alt + 3` | :kbd:`Opt + Cmd + 3` | ``spatial_editor/3_viewports_alt`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- | 4 Viewports | :kbd:`Ctrl + 4` | :kbd:`Cmd + 4` | ``spatial_editor/4_viewports`` |
- +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
- Text Editor
- -----------
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +===========================+=================================+==================================+=================================================+
- | Cut | :kbd:`Ctrl + X` | :kbd:`Cmd + X` | ``script_text_editor/cut`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Copy | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``script_text_editor/copy`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Paste | :kbd:`Ctrl + V` | :kbd:`Cmd + V` | ``script_text_editor/paste`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Select All | :kbd:`Ctrl + A` | :kbd:`Cmd + A` | ``script_text_editor/select_all`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Find | :kbd:`Ctrl + F` | :kbd:`Cmd + F` | ``script_text_editor/find`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Find Next | :kbd:`F3` | :kbd:`Cmd + G` | ``script_text_editor/find_next`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Find Previous | :kbd:`Shift + F3` | :kbd:`Cmd + Shift + G` | ``script_text_editor/find_previous`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Find in Files | :kbd:`Ctrl + Shift + F` | :kbd:`Cmd + Shift + F` | ``script_text_editor/find_in_files`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Replace | :kbd:`Ctrl + R` | :kbd:`Opt + Cmd + F` | ``script_text_editor/replace`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Replace in Files | :kbd:`Ctrl + Shift + R` | :kbd:`Cmd + Shift + R` | ``script_text_editor/replace_in_files`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Undo | :kbd:`Ctrl + Z` | :kbd:`Cmd + Z` | ``script_text_editor/undo`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Redo | :kbd:`Ctrl + Y` | :kbd:`Cmd + Y` | ``script_text_editor/redo`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Move Up | :kbd:`Alt + Up Arrow` | :kbd:`Opt + Up Arrow` | ``script_text_editor/move_up`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Move Down | :kbd:`Alt + Down Arrow` | :kbd:`Opt + Down Arrow` | ``script_text_editor/move_down`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Delete Line | :kbd:`Ctrl + Shift + K` | :kbd:`Cmd + Shift + K` | ``script_text_editor/delete_line`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Toggle Comment | :kbd:`Ctrl + K` | :kbd:`Cmd + K` | ``script_text_editor/toggle_comment`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Fold/Unfold Line | :kbd:`Alt + F` | :kbd:`Ctrl + Cmd + F` | ``script_text_editor/toggle_fold_line`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Duplicate Lines | :kbd:`Ctrl + Alt + Down Arrow` | :kbd:`Cmd + Shift + Down Arrow` | ``script_text_editor/duplicate_lines`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Duplicate Selection | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/duplicate_selection`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Complete Symbol | :kbd:`Ctrl + Space` | :kbd:`Ctrl + Space` | ``script_text_editor/complete_symbol`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Evaluate Selection | :kbd:`Ctrl + Shift + E` | :kbd:`Cmd + Shift + E` | ``script_text_editor/evaluate_selection`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Trim Trailing Whitespace | :kbd:`Ctrl + Alt + T` | :kbd:`Opt + Cmd + T` | ``script_text_editor/trim_trailing_whitespace`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Uppercase | :kbd:`Shift + F4` | :kbd:`Shift + F4` | ``script_text_editor/convert_to_uppercase`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Lowercase | :kbd:`Shift + F5` | :kbd:`Shift + F5` | ``script_text_editor/convert_to_lowercase`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Capitalize | :kbd:`Shift + F6` | :kbd:`Shift + F6` | ``script_text_editor/capitalize`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Convert Indent to Spaces | :kbd:`Ctrl + Shift + Y` | :kbd:`Cmd + Shift + Y` | ``script_text_editor/convert_indent_to_spaces`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Convert Indent to Tabs | :kbd:`Ctrl + Shift + I` | :kbd:`Cmd + Shift + I` | ``script_text_editor/convert_indent_to_tabs`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Auto Indent | :kbd:`Ctrl + I` | :kbd:`Cmd + I` | ``script_text_editor/auto_indent`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Toggle Bookmark | :kbd:`Ctrl + Alt + B` | :kbd:`Opt + Cmd + B` | ``script_text_editor/toggle_bookmark`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Next Bookmark | :kbd:`Ctrl + B` | :kbd:`Cmd + B` | ``script_text_editor/goto_next_bookmark`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Previous Bookmark | :kbd:`Ctrl + Shift + B` | :kbd:`Cmd + Shift + B` | ``script_text_editor/goto_previous_bookmark`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Function | :kbd:`Ctrl + Alt + F` | :kbd:`Ctrl + Cmd + J` | ``script_text_editor/goto_function`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Line | :kbd:`Ctrl + L` | :kbd:`Cmd + L` | ``script_text_editor/goto_line`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Toggle Breakpoint | :kbd:`F9` | :kbd:`Cmd + Shift + B` | ``script_text_editor/toggle_breakpoint`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Remove All Breakpoints | :kbd:`Ctrl + Shift + F9` | :kbd:`Cmd + Shift + F9` | ``script_text_editor/remove_all_breakpoints`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Next Breakpoint | :kbd:`Ctrl + .` | :kbd:`Cmd + .` | ``script_text_editor/goto_next_breakpoint`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Go to Previous Breakpoint | :kbd:`Ctrl + ,` | :kbd:`Cmd + ,` | ``script_text_editor/goto_previous_breakpoint`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- | Contextual Help | :kbd:`Alt + F1` | :kbd:`Opt + Shift + Space` | ``script_text_editor/contextual_help`` |
- +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
- Script Editor
- -------------
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +======================+=================================+=================================+========================================+
- | Find | :kbd:`Ctrl + F` | :kbd:`Cmd + F` | ``script_editor/find`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Find Next | :kbd:`F3` | :kbd:`F3` | ``script_editor/find_next`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Find Previous | :kbd:`Shift + F3` | :kbd:`Shift + F3` | ``script_editor/find_previous`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Find in Files | :kbd:`Ctrl + Shift + F` | :kbd:`Cmd + Shift + F` | ``script_editor/find_in_files`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Move Up | :kbd:`Shift + Alt + Up Arrow` | :kbd:`Shift + Opt + Up Arrow` | ``script_editor/window_move_up`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Move Down | :kbd:`Shift + Alt + Down Arrow` | :kbd:`Shift + Opt + Down Arrow` | ``script_editor/window_move_down`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Next Script | :kbd:`Ctrl + Shift + .` | :kbd:`Cmd + Shift + .` | ``script_editor/next_script`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Previous Script | :kbd:`Ctrl + Shift + ,` | :kbd:`Cmd + Shift + ,` | ``script_editor/prev_script`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Reopen Closed Script | :kbd:`Ctrl + Shift + T` | :kbd:`Cmd + Shift + T` | ``script_editor/reopen_closed_script`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Save | :kbd:`Ctrl + Alt + S` | :kbd:`Opt + Cmd + S` | ``script_editor/save`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Save All | :kbd:`Ctrl + Shift + Alt + S` | :kbd:`Cmd + Shift + Opt + S` | ``script_editor/save_all`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Soft Reload Script | :kbd:`Ctrl + Shift + R` | :kbd:`Cmd + Shift + R` | ``script_editor/reload_script_soft`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | History Previous | :kbd:`Alt + Left Arrow` | :kbd:`Opt + Left Arrow` | ``script_editor/history_previous`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | History Next | :kbd:`Alt + Right Arrow` | :kbd:`Opt + Right Arrow` | ``script_editor/history_next`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Close | :kbd:`Ctrl + W` | :kbd:`Cmd + W` | ``script_editor/close_file`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Run | :kbd:`Ctrl + Shift + X` | :kbd:`Cmd + Shift + X` | ``script_editor/run_file`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Toggle Scripts Panel | :kbd:`Ctrl + \\` | :kbd:`Cmd + \\` | ``script_editor/toggle_scripts_panel`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Zoom In | :kbd:`Ctrl + =` | :kbd:`Cmd + =` | ``script_editor/zoom_in`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Zoom Out | :kbd:`Ctrl + -` | :kbd:`Cmd + -` | ``script_editor/zoom_out`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- | Reset Zoom | :kbd:`Ctrl + 0` | :kbd:`Cmd + 0` | ``script_editor/reset_zoom`` |
- +----------------------+---------------------------------+---------------------------------+----------------------------------------+
- Editor Output
- -------------
- +----------------+-------------------------+------------------------+-------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +================+=========================+========================+=========================+
- | Copy Selection | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``editor/copy_output`` |
- +----------------+-------------------------+------------------------+-------------------------+
- | Clear Output | :kbd:`Ctrl + Shift + K` | :kbd:`Cmd + Shift + K` | ``editor/clear_output`` |
- +----------------+-------------------------+------------------------+-------------------------+
- Debugger
- --------
- +-------------+----------------+------------+------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +=============+================+============+========================+
- | Step Into | :kbd:`F11` | :kbd:`F11` | ``debugger/step_into`` |
- +-------------+----------------+------------+------------------------+
- | Step Over | :kbd:`F10` | :kbd:`F10` | ``debugger/step_over`` |
- +-------------+----------------+------------+------------------------+
- | Continue | :kbd:`F12` | :kbd:`F12` | ``debugger/continue`` |
- +-------------+----------------+------------+------------------------+
- File Dialog
- -----------
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +=====================+==========================+==========================+=====================================+
- | Go Back | :kbd:`Alt + Left Arrow` | :kbd:`Opt + Left Arrow` | ``file_dialog/go_back`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Go Forward | :kbd:`Alt + Right Arrow` | :kbd:`Opt + Right Arrow` | ``file_dialog/go_forward`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Go Up | :kbd:`Alt + Up Arrow` | :kbd:`Opt + Up Arrow` | ``file_dialog/go_up`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Refresh | :kbd:`F5` | :kbd:`F5` | ``file_dialog/refresh`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Toggle Hidden Files | :kbd:`Ctrl + H` | :kbd:`Cmd + H` | ``file_dialog/toggle_hidden_files`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Toggle Favorite | :kbd:`Alt + F` | :kbd:`Opt + F` | ``file_dialog/toggle_favorite`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Toggle Mode | :kbd:`Alt + V` | :kbd:`Opt + V` | ``file_dialog/toggle_mode`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Create Folder | :kbd:`Ctrl + N` | :kbd:`Cmd + N` | ``file_dialog/create_folder`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``file_dialog/delete`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Focus Path | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``file_dialog/focus_path`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Move Favorite Up | :kbd:`Ctrl + Up Arrow` | :kbd:`Cmd + Up Arrow` | ``file_dialog/move_favorite_up`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- | Move Favorite Down | :kbd:`Ctrl + Down Arrow` | :kbd:`Cmd + Down Arrow` | ``file_dialog/move_favorite_down`` |
- +---------------------+--------------------------+--------------------------+-------------------------------------+
- FileSystem Dock
- ---------------
- +-------------+-----------------+-------------------+-------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +=============+=================+===================+===============================+
- | Copy Path | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``filesystem_dock/copy_path`` |
- +-------------+-----------------+-------------------+-------------------------------+
- | Duplicate | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``filesystem_dock/duplicate`` |
- +-------------+-----------------+-------------------+-------------------------------+
- | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``filesystem_dock/delete`` |
- +-------------+-----------------+-------------------+-------------------------------+
- Scene Tree Dock
- ---------------
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +================+==========================+=========================+==================================+
- | Add Child Node | :kbd:`Ctrl + A` | :kbd:`Cmd + A` | ``scene_tree/add_child_node`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Batch Rename | :kbd:`Ctrl + F2` | :kbd:`Cmd + F2` | ``scene_tree/batch_rename`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Copy Node Path | :kbd:`Ctrl + Shift + C` | :kbd:`Cmd + Shift + C` | ``scene_tree/copy_node_path`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``scene_tree/delete`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Force Delete | :kbd:`Shift + Del` | :kbd:`Shift + Del` | ``scene_tree/delete_no_confirm`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Duplicate | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``scene_tree/duplicate`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Move Up | :kbd:`Ctrl + Up Arrow` | :kbd:`Cmd + Up Arrow` | ``scene_tree/move_up`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- | Move Down | :kbd:`Ctrl + Down Arrow` | :kbd:`Cmd + Down Arrow` | ``scene_tree/move_down`` |
- +----------------+--------------------------+-------------------------+----------------------------------+
- Animation Track Editor
- ----------------------
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +======================+===========================+==========================+=====================================================+
- | Duplicate Selection | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``animation_editor/duplicate_selection`` |
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- | Duplicate Transposed | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + D` | ``animation_editor/duplicate_selection_transposed`` |
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- | Delete Selection | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``animation_editor/delete_selection`` |
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- | Go to Next Step | :kbd:`Ctrl + Right Arrow` | :kbd:`Cmd + Right Arrow` | ``animation_editor/goto_next_step`` |
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- | Go to Previous Step | :kbd:`Ctrl + Left Arrow` | :kbd:`Cmd + Left Arrow` | ``animation_editor/goto_prev_step`` |
- +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
- Tile Map Editor
- ---------------
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +===================+=================+===================+=======================================+
- | Select | :kbd:`S` | :kbd:`S` | ``tiles_editor/selection_tool`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Cut Selection | :kbd:`Ctrl + X` | :kbd:`Cmd + X` | ``tiles_editor/cut`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Copy Selection | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``tiles_editor/copy`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Paste Selection | :kbd:`Ctrl + V` | :kbd:`Cmd + V` | ``tiles_editor/paste`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Delete Selection | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``tiles_editor/delete`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Cancel | :kbd:`Esc` | :kbd:`Esc` | ``tiles_editor/cancel`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Paint | :kbd:`D` | :kbd:`D` | ``tiles_editor/paint_tool`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Line | :kbd:`L` | :kbd:`L` | ``tiles_editor/line_tool`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Rect | :kbd:`R` | :kbd:`R` | ``tiles_editor/rect_tool`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Bucket | :kbd:`B` | :kbd:`B` | ``tiles_editor/bucket_tool`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Picker | :kbd:`P` | :kbd:`P` | ``tiles_editor/picker`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Eraser | :kbd:`E` | :kbd:`E` | ``tiles_editor/eraser`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Flip Horizontally | :kbd:`C` | :kbd:`C` | ``tiles_editor/flip_tile_horizontal`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Flip Vertically | :kbd:`V` | :kbd:`V` | ``tiles_editor/flip_tile_vertical`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Rotate Left | :kbd:`Z` | :kbd:`Z` | ``tiles_editor/rotate_tile_left`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- | Rotate Right | :kbd:`X` | :kbd:`X` | ``tiles_editor/rotate_tile_right`` |
- +-------------------+-----------------+-------------------+---------------------------------------+
- Tileset Editor
- --------------
- +---------------------+----------------+---------------+----------------------------------------+
- | Action name | Windows, Linux | macOS | Editor setting |
- +=====================+================+===============+========================================+
- | Next Coordinate | :kbd:`PgDown` | :kbd:`PgDown` | ``tileset_editor/next_shape`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Previous Coordinate | :kbd:`PgUp` | :kbd:`PgUp` | ``tileset_editor/previous_shape`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Region Mode | :kbd:`1` | :kbd:`1` | ``tileset_editor/editmode_region`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Collision Mode | :kbd:`2` | :kbd:`2` | ``tileset_editor/editmode_collision`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Occlusion Mode | :kbd:`3` | :kbd:`3` | ``tileset_editor/editmode_occlusion`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Navigation Mode | :kbd:`4` | :kbd:`4` | ``tileset_editor/editmode_navigation`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Bitmask Mode | :kbd:`5` | :kbd:`5` | ``tileset_editor/editmode_bitmask`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Priority Mode | :kbd:`6` | :kbd:`6` | ``tileset_editor/editmode_priority`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Icon Mode | :kbd:`7` | :kbd:`7` | ``tileset_editor/editmode_icon`` |
- +---------------------+----------------+---------------+----------------------------------------+
- | Z Index Mode | :kbd:`8` | :kbd:`8` | ``tileset_editor/editmode_z_index`` |
- +---------------------+----------------+---------------+----------------------------------------+
|