default_key_mapping.rst 57 KB

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