default_key_mapping.rst 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. :article_outdated: True
  2. .. meta::
  3. :keywords: cheatsheet, cheat sheet, shortcut
  4. .. _doc_default_key_mapping:
  5. Default editor shortcuts
  6. ========================
  7. Many of Godot Editor functions can be executed with keyboard shortcuts. This page
  8. lists functions which have associated shortcuts by default, but many others are
  9. available for customization in editor settings as well. To change keys associated
  10. with these and other actions navigate to ``Editor -> Editor Settings -> Shortcuts``.
  11. While some actions are universal, a lot of shortcuts are specific to individual
  12. tools. For this reason it is possible for some key combinations to be assigned
  13. to more than one function. The correct action will be performed depending on the
  14. context.
  15. .. note:: While Windows and Linux builds of the editor share most of the default settings,
  16. some shortcuts may differ for macOS version. This is done for better integration
  17. of the editor into macOS ecosystem. Users fluent with standard shortcuts on that
  18. OS should find Godot Editor's default key mapping intuitive.
  19. General Editor Actions
  20. ----------------------
  21. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  22. | Action name | Windows, Linux | macOS | Editor setting |
  23. +=======================+===============================+==============================+==================================+
  24. | Open 2D Editor | :kbd:`Ctrl + F1` | :kbd:`Opt + 1` | ``editor/editor_2d`` |
  25. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  26. | Open 3D Editor | :kbd:`Ctrl + F2` | :kbd:`Opt + 2` | ``editor/editor_3d`` |
  27. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  28. | Open Script Editor | :kbd:`Ctrl + F3` | :kbd:`Opt + 3` | ``editor/editor_script`` |
  29. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  30. | Search Help | :kbd:`F1` | :kbd:`Opt + Space` | ``editor/editor_help`` |
  31. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  32. | Distraction Free Mode | :kbd:`Ctrl + Shift + F11` | :kbd:`Cmd + Ctrl + D` | ``editor/distraction_free_mode`` |
  33. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  34. | Next tab | :kbd:`Ctrl + Tab` | :kbd:`Cmd + Tab` | ``editor/next_tab`` |
  35. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  36. | Previous tab | :kbd:`Ctrl + Shift + Tab` | :kbd:`Cmd + Shift + Tab` | ``editor/prev_tab`` |
  37. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  38. | Filter Files | :kbd:`Ctrl + Alt + P` | :kbd:`Opt + Cmd + P` | ``editor/filter_files`` |
  39. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  40. | Open Scene | :kbd:`Ctrl + O` | :kbd:`Cmd + O` | ``editor/open_scene`` |
  41. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  42. | Close Scene | :kbd:`Ctrl + Shift + W` | :kbd:`Cmd + Shift + W` | ``editor/close_scene`` |
  43. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  44. | Reopen Closed Scene | :kbd:`Ctrl + Shift + T` | :kbd:`Cmd + Shift + T` | ``editor/reopen_closed_scene`` |
  45. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  46. | Save Scene | :kbd:`Ctrl + S` | :kbd:`Cmd + S` | ``editor/save_scene`` |
  47. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  48. | Save Scene As | :kbd:`Ctrl + Shift + S` | :kbd:`Cmd + Shift + S` | ``editor/save_scene_as`` |
  49. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  50. | Save All Scenes | :kbd:`Ctrl + Shift + Alt + S` | :kbd:`Cmd + Shift + Opt + S` | ``editor/save_all_scenes`` |
  51. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  52. | Quick Open | :kbd:`Shift + Alt + O` | :kbd:`Shift + Opt + O` | ``editor/quick_open`` |
  53. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  54. | Quick Open Scene | :kbd:`Ctrl + Shift + O` | :kbd:`Cmd + Shift + O` | ``editor/quick_open_scene`` |
  55. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  56. | Quick Open Script | :kbd:`Ctrl + Alt + O` | :kbd:`Opt + Cmd + O` | ``editor/quick_open_script`` |
  57. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  58. | Undo | :kbd:`Ctrl + Z` | :kbd:`Cmd + Z` | ``editor/undo`` |
  59. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  60. | Redo | :kbd:`Ctrl + Shift + Z` | :kbd:`Cmd + Shift + Z` | ``editor/redo`` |
  61. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  62. | Quit | :kbd:`Ctrl + Q` | :kbd:`Cmd + Q` | ``editor/file_quit`` |
  63. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  64. | Quit to Project List | :kbd:`Ctrl + Shift + Q` | :kbd:`Shift + Opt + Q` | ``editor/quit_to_project_list`` |
  65. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  66. | Take Screenshot | :kbd:`Ctrl + F12` | :kbd:`Cmd + F12` | ``editor/take_screenshot`` |
  67. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  68. | Toggle Fullscreen | :kbd:`Shift + F11` | :kbd:`Cmd + Ctrl + F` | ``editor/fullscreen_mode`` |
  69. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  70. | Play | :kbd:`F5` | :kbd:`Cmd + B` | ``editor/play`` |
  71. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  72. | Pause Scene | :kbd:`F7` | :kbd:`Cmd + Ctrl + Y` | ``editor/pause_scene`` |
  73. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  74. | Stop | :kbd:`F8` | :kbd:`Cmd + .` | ``editor/stop`` |
  75. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  76. | Play Scene | :kbd:`F6` | :kbd:`Cmd + R` | ``editor/play_scene`` |
  77. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  78. | Play Custom Scene | :kbd:`Ctrl + Shift + F5` | :kbd:`Cmd + Shift + R` | ``editor/play_custom_scene`` |
  79. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  80. | Expand Bottom Panel | :kbd:`Shift + F12` | :kbd:`Shift + F12` | ``editor/bottom_panel_expand`` |
  81. +-----------------------+-------------------------------+------------------------------+----------------------------------+
  82. 2D / Canvas Item Editor
  83. -----------------------
  84. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  85. | Action name | Windows, Linux | macOS | Editor setting |
  86. +==============================+=========================+========================+========================================================+
  87. | Zoom In | :kbd:`Ctrl + =` | :kbd:`Cmd + =` | ``canvas_item_editor/zoom_plus`` |
  88. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  89. | Zoom Out | :kbd:`Ctrl + -` | :kbd:`Cmd + -` | ``canvas_item_editor/zoom_minus`` |
  90. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  91. | Zoom Reset | :kbd:`Ctrl + 0` | :kbd:`Cmd + 0` | ``canvas_item_editor/zoom_reset`` |
  92. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  93. | Pan View | :kbd:`Space` | :kbd:`Space` | ``canvas_item_editor/pan_view`` |
  94. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  95. | Select Mode | :kbd:`Q` | :kbd:`Q` | ``canvas_item_editor/select_mode`` |
  96. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  97. | Move Mode | :kbd:`W` | :kbd:`W` | ``canvas_item_editor/move_mode`` |
  98. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  99. | Rotate Mode | :kbd:`E` | :kbd:`E` | ``canvas_item_editor/rotate_mode`` |
  100. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  101. | Scale Mode | :kbd:`S` | :kbd:`S` | ``canvas_item_editor/scale_mode`` |
  102. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  103. | Ruler Mode | :kbd:`R` | :kbd:`R` | ``canvas_item_editor/ruler_mode`` |
  104. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  105. | Use Smart Snap | :kbd:`Shift + S` | :kbd:`Shift + S` | ``canvas_item_editor/use_smart_snap`` |
  106. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  107. | Use Grid Snap | :kbd:`Shift + G` | :kbd:`Shift + G` | ``canvas_item_editor/use_grid_snap`` |
  108. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  109. | Multiply grid step by 2 | :kbd:`Num *` | :kbd:`Num *` | ``canvas_item_editor/multiply_grid_step`` |
  110. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  111. | Divide grid step by 2 | :kbd:`Num /` | :kbd:`Num /` | ``canvas_item_editor/divide_grid_step`` |
  112. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  113. | Always Show Grid | :kbd:`G` | :kbd:`G` | ``canvas_item_editor/show_grid`` |
  114. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  115. | Show Helpers | :kbd:`H` | :kbd:`H` | ``canvas_item_editor/show_helpers`` |
  116. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  117. | Show Guides | :kbd:`Y` | :kbd:`Y` | ``canvas_item_editor/show_guides`` |
  118. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  119. | Center Selection | :kbd:`F` | :kbd:`F` | ``canvas_item_editor/center_selection`` |
  120. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  121. | Frame Selection | :kbd:`Shift + F` | :kbd:`Shift + F` | ``canvas_item_editor/frame_selection`` |
  122. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  123. | Preview Canvas Scale | :kbd:`Ctrl + Shift + P` | :kbd:`Cmd + Shift + P` | ``canvas_item_editor/preview_canvas_scale`` |
  124. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  125. | Insert Key | :kbd:`Ins` | :kbd:`Ins` | ``canvas_item_editor/anim_insert_key`` |
  126. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  127. | Insert Key (Existing Tracks) | :kbd:`Ctrl + Ins` | :kbd:`Cmd + Ins` | ``canvas_item_editor/anim_insert_key_existing_tracks`` |
  128. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  129. | Make Custom Bones from Nodes | :kbd:`Ctrl + Shift + B` | :kbd:`Cmd + Shift + B` | ``canvas_item_editor/skeleton_make_bones`` |
  130. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  131. | Clear Pose | :kbd:`Shift + K` | :kbd:`Shift + K` | ``canvas_item_editor/anim_clear_pose`` |
  132. +------------------------------+-------------------------+------------------------+--------------------------------------------------------+
  133. .. _doc_default_key_mapping_shortcuts_spatial_editor:
  134. 3D / Spatial Editor
  135. -------------------
  136. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  137. | Action name | Windows, Linux | macOS | Editor setting |
  138. +====================================+=======================+======================+==================================================+
  139. | Toggle Freelook | :kbd:`Shift + F` | :kbd:`Shift + F` | ``spatial_editor/freelook_toggle`` |
  140. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  141. | Freelook Left | :kbd:`A` | :kbd:`A` | ``spatial_editor/freelook_left`` |
  142. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  143. | Freelook Right | :kbd:`D` | :kbd:`D` | ``spatial_editor/freelook_right`` |
  144. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  145. | Freelook Forward | :kbd:`W` | :kbd:`W` | ``spatial_editor/freelook_forward`` |
  146. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  147. | Freelook Backwards | :kbd:`S` | :kbd:`S` | ``spatial_editor/freelook_backwards`` |
  148. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  149. | Freelook Up | :kbd:`E` | :kbd:`E` | ``spatial_editor/freelook_up`` |
  150. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  151. | Freelook Down | :kbd:`Q` | :kbd:`Q` | ``spatial_editor/freelook_down`` |
  152. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  153. | Freelook Speed Modifier | :kbd:`Shift` | :kbd:`Shift` | ``spatial_editor/freelook_speed_modifier`` |
  154. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  155. | Freelook Slow Modifier | :kbd:`Alt` | :kbd:`Opt` | ``spatial_editor/freelook_slow_modifier`` |
  156. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  157. | Select Mode | :kbd:`Q` | :kbd:`Q` | ``spatial_editor/tool_select`` |
  158. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  159. | Move Mode | :kbd:`W` | :kbd:`W` | ``spatial_editor/tool_move`` |
  160. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  161. | Rotate Mode | :kbd:`E` | :kbd:`E` | ``spatial_editor/tool_rotate`` |
  162. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  163. | Scale Mode | :kbd:`R` | :kbd:`R` | ``spatial_editor/tool_scale`` |
  164. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  165. | Use Local Space | :kbd:`T` | :kbd:`T` | ``spatial_editor/local_coords`` |
  166. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  167. | Use Snap | :kbd:`Y` | :kbd:`Y` | ``spatial_editor/snap`` |
  168. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  169. | Snap Object to Floor | :kbd:`PgDown` | :kbd:`PgDown` | ``spatial_editor/snap_to_floor`` |
  170. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  171. | Top View | :kbd:`Num 7` | :kbd:`Num 7` | ``spatial_editor/top_view`` |
  172. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  173. | Bottom View | :kbd:`Alt + Num 7` | :kbd:`Opt + Num 7` | ``spatial_editor/bottom_view`` |
  174. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  175. | Front View | :kbd:`Num 1` | :kbd:`Num 1` | ``spatial_editor/front_view`` |
  176. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  177. | Rear View | :kbd:`Alt + Num 1` | :kbd:`Opt + Num 1` | ``spatial_editor/rear_view`` |
  178. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  179. | Right View | :kbd:`Num 3` | :kbd:`Num 3` | ``spatial_editor/right_view`` |
  180. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  181. | Left View | :kbd:`Alt + Num 3` | :kbd:`Opt + Num 3` | ``spatial_editor/left_view`` |
  182. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  183. | Switch Perspective/Orthogonal View | :kbd:`Num 5` | :kbd:`Num 5` | ``spatial_editor/switch_perspective_orthogonal`` |
  184. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  185. | Insert Animation Key | :kbd:`K` | :kbd:`K` | ``spatial_editor/insert_anim_key`` |
  186. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  187. | Focus Origin | :kbd:`O` | :kbd:`O` | ``spatial_editor/focus_origin`` |
  188. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  189. | Focus Selection | :kbd:`F` | :kbd:`F` | ``spatial_editor/focus_selection`` |
  190. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  191. | Align Transform with View | :kbd:`Ctrl + Alt + M` | :kbd:`Opt + Cmd + M` | ``spatial_editor/align_transform_with_view`` |
  192. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  193. | Align Rotation with View | :kbd:`Ctrl + Alt + F` | :kbd:`Opt + Cmd + F` | ``spatial_editor/align_rotation_with_view`` |
  194. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  195. | 1 Viewport | :kbd:`Ctrl + 1` | :kbd:`Cmd + 1` | ``spatial_editor/1_viewport`` |
  196. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  197. | 2 Viewports | :kbd:`Ctrl + 2` | :kbd:`Cmd + 2` | ``spatial_editor/2_viewports`` |
  198. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  199. | 2 Viewports (Alt) | :kbd:`Ctrl + Alt + 2` | :kbd:`Opt + Cmd + 2` | ``spatial_editor/2_viewports_alt`` |
  200. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  201. | 3 Viewports | :kbd:`Ctrl + 3` | :kbd:`Cmd + 3` | ``spatial_editor/3_viewports`` |
  202. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  203. | 3 Viewports (Alt) | :kbd:`Ctrl + Alt + 3` | :kbd:`Opt + Cmd + 3` | ``spatial_editor/3_viewports_alt`` |
  204. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  205. | 4 Viewports | :kbd:`Ctrl + 4` | :kbd:`Cmd + 4` | ``spatial_editor/4_viewports`` |
  206. +------------------------------------+-----------------------+----------------------+--------------------------------------------------+
  207. Text Editor
  208. -----------
  209. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  210. | Action name | Windows, Linux | macOS | Editor setting |
  211. +===========================+=================================+==================================+=================================================+
  212. | Cut | :kbd:`Ctrl + X` | :kbd:`Cmd + X` | ``script_text_editor/cut`` |
  213. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  214. | Copy | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``script_text_editor/copy`` |
  215. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  216. | Paste | :kbd:`Ctrl + V` | :kbd:`Cmd + V` | ``script_text_editor/paste`` |
  217. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  218. | Select All | :kbd:`Ctrl + A` | :kbd:`Cmd + A` | ``script_text_editor/select_all`` |
  219. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  220. | Find | :kbd:`Ctrl + F` | :kbd:`Cmd + F` | ``script_text_editor/find`` |
  221. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  222. | Find Next | :kbd:`F3` | :kbd:`Cmd + G` | ``script_text_editor/find_next`` |
  223. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  224. | Find Previous | :kbd:`Shift + F3` | :kbd:`Cmd + Shift + G` | ``script_text_editor/find_previous`` |
  225. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  226. | Find in Files | :kbd:`Ctrl + Shift + F` | :kbd:`Cmd + Shift + F` | ``script_text_editor/find_in_files`` |
  227. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  228. | Replace | :kbd:`Ctrl + R` | :kbd:`Opt + Cmd + F` | ``script_text_editor/replace`` |
  229. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  230. | Replace in Files | :kbd:`Ctrl + Shift + R` | :kbd:`Cmd + Shift + R` | ``script_text_editor/replace_in_files`` |
  231. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  232. | Undo | :kbd:`Ctrl + Z` | :kbd:`Cmd + Z` | ``script_text_editor/undo`` |
  233. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  234. | Redo | :kbd:`Ctrl + Y` | :kbd:`Cmd + Y` | ``script_text_editor/redo`` |
  235. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  236. | Move Up | :kbd:`Alt + Up Arrow` | :kbd:`Opt + Up Arrow` | ``script_text_editor/move_up`` |
  237. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  238. | Move Down | :kbd:`Alt + Down Arrow` | :kbd:`Opt + Down Arrow` | ``script_text_editor/move_down`` |
  239. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  240. | Delete Line | :kbd:`Ctrl + Shift + K` | :kbd:`Cmd + Shift + K` | ``script_text_editor/delete_line`` |
  241. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  242. | Toggle Comment | :kbd:`Ctrl + K` | :kbd:`Cmd + K` | ``script_text_editor/toggle_comment`` |
  243. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  244. | Fold/Unfold Line | :kbd:`Alt + F` | :kbd:`Ctrl + Cmd + F` | ``script_text_editor/toggle_fold_line`` |
  245. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  246. | Duplicate Lines | :kbd:`Ctrl + Alt + Down Arrow` | :kbd:`Cmd + Shift + Down Arrow` | ``script_text_editor/duplicate_lines`` |
  247. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  248. | Duplicate Selection | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/duplicate_selection`` |
  249. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  250. | Complete Symbol | :kbd:`Ctrl + Space` | :kbd:`Ctrl + Space` | ``script_text_editor/complete_symbol`` |
  251. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  252. | Evaluate Selection | :kbd:`Ctrl + Shift + E` | :kbd:`Cmd + Shift + E` | ``script_text_editor/evaluate_selection`` |
  253. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  254. | Trim Trailing Whitespace | :kbd:`Ctrl + Alt + T` | :kbd:`Opt + Cmd + T` | ``script_text_editor/trim_trailing_whitespace`` |
  255. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  256. | Uppercase | :kbd:`Shift + F4` | :kbd:`Shift + F4` | ``script_text_editor/convert_to_uppercase`` |
  257. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  258. | Lowercase | :kbd:`Shift + F5` | :kbd:`Shift + F5` | ``script_text_editor/convert_to_lowercase`` |
  259. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  260. | Capitalize | :kbd:`Shift + F6` | :kbd:`Shift + F6` | ``script_text_editor/capitalize`` |
  261. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  262. | Convert Indent to Spaces | :kbd:`Ctrl + Shift + Y` | :kbd:`Cmd + Shift + Y` | ``script_text_editor/convert_indent_to_spaces`` |
  263. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  264. | Convert Indent to Tabs | :kbd:`Ctrl + Shift + I` | :kbd:`Cmd + Shift + I` | ``script_text_editor/convert_indent_to_tabs`` |
  265. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  266. | Auto Indent | :kbd:`Ctrl + I` | :kbd:`Cmd + I` | ``script_text_editor/auto_indent`` |
  267. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  268. | Toggle Bookmark | :kbd:`Ctrl + Alt + B` | :kbd:`Opt + Cmd + B` | ``script_text_editor/toggle_bookmark`` |
  269. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  270. | Go to Next Bookmark | :kbd:`Ctrl + B` | :kbd:`Cmd + B` | ``script_text_editor/goto_next_bookmark`` |
  271. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  272. | Go to Previous Bookmark | :kbd:`Ctrl + Shift + B` | :kbd:`Cmd + Shift + B` | ``script_text_editor/goto_previous_bookmark`` |
  273. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  274. | Go to Function | :kbd:`Ctrl + Alt + F` | :kbd:`Ctrl + Cmd + J` | ``script_text_editor/goto_function`` |
  275. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  276. | Go to Line | :kbd:`Ctrl + L` | :kbd:`Cmd + L` | ``script_text_editor/goto_line`` |
  277. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  278. | Toggle Breakpoint | :kbd:`F9` | :kbd:`Cmd + Shift + B` | ``script_text_editor/toggle_breakpoint`` |
  279. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  280. | Remove All Breakpoints | :kbd:`Ctrl + Shift + F9` | :kbd:`Cmd + Shift + F9` | ``script_text_editor/remove_all_breakpoints`` |
  281. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  282. | Go to Next Breakpoint | :kbd:`Ctrl + .` | :kbd:`Cmd + .` | ``script_text_editor/goto_next_breakpoint`` |
  283. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  284. | Go to Previous Breakpoint | :kbd:`Ctrl + ,` | :kbd:`Cmd + ,` | ``script_text_editor/goto_previous_breakpoint`` |
  285. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  286. | Contextual Help | :kbd:`Alt + F1` | :kbd:`Opt + Shift + Space` | ``script_text_editor/contextual_help`` |
  287. +---------------------------+---------------------------------+----------------------------------+-------------------------------------------------+
  288. Script Editor
  289. -------------
  290. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  291. | Action name | Windows, Linux | macOS | Editor setting |
  292. +======================+=================================+=================================+========================================+
  293. | Find | :kbd:`Ctrl + F` | :kbd:`Cmd + F` | ``script_editor/find`` |
  294. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  295. | Find Next | :kbd:`F3` | :kbd:`F3` | ``script_editor/find_next`` |
  296. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  297. | Find Previous | :kbd:`Shift + F3` | :kbd:`Shift + F3` | ``script_editor/find_previous`` |
  298. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  299. | Find in Files | :kbd:`Ctrl + Shift + F` | :kbd:`Cmd + Shift + F` | ``script_editor/find_in_files`` |
  300. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  301. | Move Up | :kbd:`Shift + Alt + Up Arrow` | :kbd:`Shift + Opt + Up Arrow` | ``script_editor/window_move_up`` |
  302. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  303. | Move Down | :kbd:`Shift + Alt + Down Arrow` | :kbd:`Shift + Opt + Down Arrow` | ``script_editor/window_move_down`` |
  304. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  305. | Next Script | :kbd:`Ctrl + Shift + .` | :kbd:`Cmd + Shift + .` | ``script_editor/next_script`` |
  306. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  307. | Previous Script | :kbd:`Ctrl + Shift + ,` | :kbd:`Cmd + Shift + ,` | ``script_editor/prev_script`` |
  308. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  309. | Reopen Closed Script | :kbd:`Ctrl + Shift + T` | :kbd:`Cmd + Shift + T` | ``script_editor/reopen_closed_script`` |
  310. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  311. | Save | :kbd:`Ctrl + Alt + S` | :kbd:`Opt + Cmd + S` | ``script_editor/save`` |
  312. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  313. | Save All | :kbd:`Ctrl + Shift + Alt + S` | :kbd:`Cmd + Shift + Opt + S` | ``script_editor/save_all`` |
  314. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  315. | Soft Reload Script | :kbd:`Ctrl + Shift + R` | :kbd:`Cmd + Shift + R` | ``script_editor/reload_script_soft`` |
  316. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  317. | History Previous | :kbd:`Alt + Left Arrow` | :kbd:`Opt + Left Arrow` | ``script_editor/history_previous`` |
  318. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  319. | History Next | :kbd:`Alt + Right Arrow` | :kbd:`Opt + Right Arrow` | ``script_editor/history_next`` |
  320. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  321. | Close | :kbd:`Ctrl + W` | :kbd:`Cmd + W` | ``script_editor/close_file`` |
  322. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  323. | Run | :kbd:`Ctrl + Shift + X` | :kbd:`Cmd + Shift + X` | ``script_editor/run_file`` |
  324. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  325. | Toggle Scripts Panel | :kbd:`Ctrl + \\` | :kbd:`Cmd + \\` | ``script_editor/toggle_scripts_panel`` |
  326. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  327. | Zoom In | :kbd:`Ctrl + =` | :kbd:`Cmd + =` | ``script_editor/zoom_in`` |
  328. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  329. | Zoom Out | :kbd:`Ctrl + -` | :kbd:`Cmd + -` | ``script_editor/zoom_out`` |
  330. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  331. | Reset Zoom | :kbd:`Ctrl + 0` | :kbd:`Cmd + 0` | ``script_editor/reset_zoom`` |
  332. +----------------------+---------------------------------+---------------------------------+----------------------------------------+
  333. Editor Output
  334. -------------
  335. +----------------+-------------------------+------------------------+-------------------------+
  336. | Action name | Windows, Linux | macOS | Editor setting |
  337. +================+=========================+========================+=========================+
  338. | Copy Selection | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``editor/copy_output`` |
  339. +----------------+-------------------------+------------------------+-------------------------+
  340. | Clear Output | :kbd:`Ctrl + Shift + K` | :kbd:`Cmd + Shift + K` | ``editor/clear_output`` |
  341. +----------------+-------------------------+------------------------+-------------------------+
  342. Debugger
  343. --------
  344. +-------------+----------------+------------+------------------------+
  345. | Action name | Windows, Linux | macOS | Editor setting |
  346. +=============+================+============+========================+
  347. | Step Into | :kbd:`F11` | :kbd:`F11` | ``debugger/step_into`` |
  348. +-------------+----------------+------------+------------------------+
  349. | Step Over | :kbd:`F10` | :kbd:`F10` | ``debugger/step_over`` |
  350. +-------------+----------------+------------+------------------------+
  351. | Continue | :kbd:`F12` | :kbd:`F12` | ``debugger/continue`` |
  352. +-------------+----------------+------------+------------------------+
  353. File Dialog
  354. -----------
  355. +---------------------+--------------------------+--------------------------+-------------------------------------+
  356. | Action name | Windows, Linux | macOS | Editor setting |
  357. +=====================+==========================+==========================+=====================================+
  358. | Go Back | :kbd:`Alt + Left Arrow` | :kbd:`Opt + Left Arrow` | ``file_dialog/go_back`` |
  359. +---------------------+--------------------------+--------------------------+-------------------------------------+
  360. | Go Forward | :kbd:`Alt + Right Arrow` | :kbd:`Opt + Right Arrow` | ``file_dialog/go_forward`` |
  361. +---------------------+--------------------------+--------------------------+-------------------------------------+
  362. | Go Up | :kbd:`Alt + Up Arrow` | :kbd:`Opt + Up Arrow` | ``file_dialog/go_up`` |
  363. +---------------------+--------------------------+--------------------------+-------------------------------------+
  364. | Refresh | :kbd:`F5` | :kbd:`F5` | ``file_dialog/refresh`` |
  365. +---------------------+--------------------------+--------------------------+-------------------------------------+
  366. | Toggle Hidden Files | :kbd:`Ctrl + H` | :kbd:`Cmd + H` | ``file_dialog/toggle_hidden_files`` |
  367. +---------------------+--------------------------+--------------------------+-------------------------------------+
  368. | Toggle Favorite | :kbd:`Alt + F` | :kbd:`Opt + F` | ``file_dialog/toggle_favorite`` |
  369. +---------------------+--------------------------+--------------------------+-------------------------------------+
  370. | Toggle Mode | :kbd:`Alt + V` | :kbd:`Opt + V` | ``file_dialog/toggle_mode`` |
  371. +---------------------+--------------------------+--------------------------+-------------------------------------+
  372. | Create Folder | :kbd:`Ctrl + N` | :kbd:`Cmd + N` | ``file_dialog/create_folder`` |
  373. +---------------------+--------------------------+--------------------------+-------------------------------------+
  374. | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``file_dialog/delete`` |
  375. +---------------------+--------------------------+--------------------------+-------------------------------------+
  376. | Focus Path | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``file_dialog/focus_path`` |
  377. +---------------------+--------------------------+--------------------------+-------------------------------------+
  378. | Move Favorite Up | :kbd:`Ctrl + Up Arrow` | :kbd:`Cmd + Up Arrow` | ``file_dialog/move_favorite_up`` |
  379. +---------------------+--------------------------+--------------------------+-------------------------------------+
  380. | Move Favorite Down | :kbd:`Ctrl + Down Arrow` | :kbd:`Cmd + Down Arrow` | ``file_dialog/move_favorite_down`` |
  381. +---------------------+--------------------------+--------------------------+-------------------------------------+
  382. FileSystem Dock
  383. ---------------
  384. +-------------+-----------------+-------------------+-------------------------------+
  385. | Action name | Windows, Linux | macOS | Editor setting |
  386. +=============+=================+===================+===============================+
  387. | Copy Path | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``filesystem_dock/copy_path`` |
  388. +-------------+-----------------+-------------------+-------------------------------+
  389. | Duplicate | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``filesystem_dock/duplicate`` |
  390. +-------------+-----------------+-------------------+-------------------------------+
  391. | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``filesystem_dock/delete`` |
  392. +-------------+-----------------+-------------------+-------------------------------+
  393. Scene Tree Dock
  394. ---------------
  395. +----------------+--------------------------+-------------------------+----------------------------------+
  396. | Action name | Windows, Linux | macOS | Editor setting |
  397. +================+==========================+=========================+==================================+
  398. | Add Child Node | :kbd:`Ctrl + A` | :kbd:`Cmd + A` | ``scene_tree/add_child_node`` |
  399. +----------------+--------------------------+-------------------------+----------------------------------+
  400. | Batch Rename | :kbd:`Ctrl + F2` | :kbd:`Cmd + F2` | ``scene_tree/batch_rename`` |
  401. +----------------+--------------------------+-------------------------+----------------------------------+
  402. | Copy Node Path | :kbd:`Ctrl + Shift + C` | :kbd:`Cmd + Shift + C` | ``scene_tree/copy_node_path`` |
  403. +----------------+--------------------------+-------------------------+----------------------------------+
  404. | Delete | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``scene_tree/delete`` |
  405. +----------------+--------------------------+-------------------------+----------------------------------+
  406. | Force Delete | :kbd:`Shift + Del` | :kbd:`Shift + Del` | ``scene_tree/delete_no_confirm`` |
  407. +----------------+--------------------------+-------------------------+----------------------------------+
  408. | Duplicate | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``scene_tree/duplicate`` |
  409. +----------------+--------------------------+-------------------------+----------------------------------+
  410. | Move Up | :kbd:`Ctrl + Up Arrow` | :kbd:`Cmd + Up Arrow` | ``scene_tree/move_up`` |
  411. +----------------+--------------------------+-------------------------+----------------------------------+
  412. | Move Down | :kbd:`Ctrl + Down Arrow` | :kbd:`Cmd + Down Arrow` | ``scene_tree/move_down`` |
  413. +----------------+--------------------------+-------------------------+----------------------------------+
  414. Animation Track Editor
  415. ----------------------
  416. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  417. | Action name | Windows, Linux | macOS | Editor setting |
  418. +======================+===========================+==========================+=====================================================+
  419. | Duplicate Selection | :kbd:`Ctrl + D` | :kbd:`Cmd + D` | ``animation_editor/duplicate_selection`` |
  420. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  421. | Duplicate Transposed | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + D` | ``animation_editor/duplicate_selection_transposed`` |
  422. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  423. | Delete Selection | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``animation_editor/delete_selection`` |
  424. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  425. | Go to Next Step | :kbd:`Ctrl + Right Arrow` | :kbd:`Cmd + Right Arrow` | ``animation_editor/goto_next_step`` |
  426. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  427. | Go to Previous Step | :kbd:`Ctrl + Left Arrow` | :kbd:`Cmd + Left Arrow` | ``animation_editor/goto_prev_step`` |
  428. +----------------------+---------------------------+--------------------------+-----------------------------------------------------+
  429. Tile Map Editor
  430. ---------------
  431. +-------------------+-----------------+-------------------+---------------------------------------+
  432. | Action name | Windows, Linux | macOS | Editor setting |
  433. +===================+=================+===================+=======================================+
  434. | Select | :kbd:`S` | :kbd:`S` | ``tiles_editor/selection_tool`` |
  435. +-------------------+-----------------+-------------------+---------------------------------------+
  436. | Cut Selection | :kbd:`Ctrl + X` | :kbd:`Cmd + X` | ``tiles_editor/cut`` |
  437. +-------------------+-----------------+-------------------+---------------------------------------+
  438. | Copy Selection | :kbd:`Ctrl + C` | :kbd:`Cmd + C` | ``tiles_editor/copy`` |
  439. +-------------------+-----------------+-------------------+---------------------------------------+
  440. | Paste Selection | :kbd:`Ctrl + V` | :kbd:`Cmd + V` | ``tiles_editor/paste`` |
  441. +-------------------+-----------------+-------------------+---------------------------------------+
  442. | Delete Selection | :kbd:`Del` | :kbd:`Cmd + BkSp` | ``tiles_editor/delete`` |
  443. +-------------------+-----------------+-------------------+---------------------------------------+
  444. | Cancel | :kbd:`Esc` | :kbd:`Esc` | ``tiles_editor/cancel`` |
  445. +-------------------+-----------------+-------------------+---------------------------------------+
  446. | Paint | :kbd:`D` | :kbd:`D` | ``tiles_editor/paint_tool`` |
  447. +-------------------+-----------------+-------------------+---------------------------------------+
  448. | Line | :kbd:`L` | :kbd:`L` | ``tiles_editor/line_tool`` |
  449. +-------------------+-----------------+-------------------+---------------------------------------+
  450. | Rect | :kbd:`R` | :kbd:`R` | ``tiles_editor/rect_tool`` |
  451. +-------------------+-----------------+-------------------+---------------------------------------+
  452. | Bucket | :kbd:`B` | :kbd:`B` | ``tiles_editor/bucket_tool`` |
  453. +-------------------+-----------------+-------------------+---------------------------------------+
  454. | Picker | :kbd:`P` | :kbd:`P` | ``tiles_editor/picker`` |
  455. +-------------------+-----------------+-------------------+---------------------------------------+
  456. | Eraser | :kbd:`E` | :kbd:`E` | ``tiles_editor/eraser`` |
  457. +-------------------+-----------------+-------------------+---------------------------------------+
  458. | Flip Horizontally | :kbd:`C` | :kbd:`C` | ``tiles_editor/flip_tile_horizontal`` |
  459. +-------------------+-----------------+-------------------+---------------------------------------+
  460. | Flip Vertically | :kbd:`V` | :kbd:`V` | ``tiles_editor/flip_tile_vertical`` |
  461. +-------------------+-----------------+-------------------+---------------------------------------+
  462. | Rotate Left | :kbd:`Z` | :kbd:`Z` | ``tiles_editor/rotate_tile_left`` |
  463. +-------------------+-----------------+-------------------+---------------------------------------+
  464. | Rotate Right | :kbd:`X` | :kbd:`X` | ``tiles_editor/rotate_tile_right`` |
  465. +-------------------+-----------------+-------------------+---------------------------------------+
  466. Tileset Editor
  467. --------------
  468. +---------------------+----------------+---------------+----------------------------------------+
  469. | Action name | Windows, Linux | macOS | Editor setting |
  470. +=====================+================+===============+========================================+
  471. | Next Coordinate | :kbd:`PgDown` | :kbd:`PgDown` | ``tileset_editor/next_shape`` |
  472. +---------------------+----------------+---------------+----------------------------------------+
  473. | Previous Coordinate | :kbd:`PgUp` | :kbd:`PgUp` | ``tileset_editor/previous_shape`` |
  474. +---------------------+----------------+---------------+----------------------------------------+
  475. | Region Mode | :kbd:`1` | :kbd:`1` | ``tileset_editor/editmode_region`` |
  476. +---------------------+----------------+---------------+----------------------------------------+
  477. | Collision Mode | :kbd:`2` | :kbd:`2` | ``tileset_editor/editmode_collision`` |
  478. +---------------------+----------------+---------------+----------------------------------------+
  479. | Occlusion Mode | :kbd:`3` | :kbd:`3` | ``tileset_editor/editmode_occlusion`` |
  480. +---------------------+----------------+---------------+----------------------------------------+
  481. | Navigation Mode | :kbd:`4` | :kbd:`4` | ``tileset_editor/editmode_navigation`` |
  482. +---------------------+----------------+---------------+----------------------------------------+
  483. | Bitmask Mode | :kbd:`5` | :kbd:`5` | ``tileset_editor/editmode_bitmask`` |
  484. +---------------------+----------------+---------------+----------------------------------------+
  485. | Priority Mode | :kbd:`6` | :kbd:`6` | ``tileset_editor/editmode_priority`` |
  486. +---------------------+----------------+---------------+----------------------------------------+
  487. | Icon Mode | :kbd:`7` | :kbd:`7` | ``tileset_editor/editmode_icon`` |
  488. +---------------------+----------------+---------------+----------------------------------------+
  489. | Z Index Mode | :kbd:`8` | :kbd:`8` | ``tileset_editor/editmode_z_index`` |
  490. +---------------------+----------------+---------------+----------------------------------------+