From f33cf64f00ac704241f7dbf9626cc4b411c4c208 Mon Sep 17 00:00:00 2001 From: Seth Louis <116498290+bonsaipropaganda@users.noreply.github.com> Date: Wed, 11 Oct 2023 08:32:30 -0400 Subject: [PATCH 1/3] Updated 'clone down' default editor shortcut The default editor shortcut for 'clone down' is ctrl + shift + d. The documentation said ctrl + d by mistake. This reddit post can confirm this as well: https://www.reddit.com/r/godot/comments/15pcew1/cant_duplicate_line_in_editor_clone_down_is/ --- tutorials/editor/default_key_mapping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/editor/default_key_mapping.rst b/tutorials/editor/default_key_mapping.rst index 50cbc652a7a..c6ef13d5985 100644 --- a/tutorials/editor/default_key_mapping.rst +++ b/tutorials/editor/default_key_mapping.rst @@ -255,7 +255,7 @@ Text Editor +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Fold/Unfold Line | :kbd:`Alt + F` | :kbd:`Alt + F` | ``script_text_editor/toggle_fold_line`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ -| Clone Down | :kbd:`Ctrl + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/clone_down`` | +| Clone Down | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/clone_down`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Complete Symbol | :kbd:`Ctrl + Space` | :kbd:`Ctrl + Space` | ``script_text_editor/complete_symbol`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ From 95a9b1f53431f9845c8fd63f6d03f9d641da396d Mon Sep 17 00:00:00 2001 From: Seth Louis <116498290+bonsaipropaganda@users.noreply.github.com> Date: Wed, 11 Oct 2023 09:04:16 -0400 Subject: [PATCH 2/3] Updating "Clone down" to duplicate selection Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- tutorials/editor/default_key_mapping.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/editor/default_key_mapping.rst b/tutorials/editor/default_key_mapping.rst index c6ef13d5985..f2061eef55c 100644 --- a/tutorials/editor/default_key_mapping.rst +++ b/tutorials/editor/default_key_mapping.rst @@ -256,6 +256,7 @@ Text Editor | Fold/Unfold Line | :kbd:`Alt + F` | :kbd:`Alt + F` | ``script_text_editor/toggle_fold_line`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Clone Down | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/clone_down`` | +| Duplicate Selection | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/duplicate_selection`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Complete Symbol | :kbd:`Ctrl + Space` | :kbd:`Ctrl + Space` | ``script_text_editor/complete_symbol`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ From cff844d0fc8da4b896c0deb3c83375a6e3af7587 Mon Sep 17 00:00:00 2001 From: Seth Louis <116498290+bonsaipropaganda@users.noreply.github.com> Date: Wed, 11 Oct 2023 09:09:13 -0400 Subject: [PATCH 3/3] Removed "Clone down" Clone down is no longer used. This editor shortcut name has been changed to "Duplicate selection" --- tutorials/editor/default_key_mapping.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/tutorials/editor/default_key_mapping.rst b/tutorials/editor/default_key_mapping.rst index f2061eef55c..d11f1c0ed17 100644 --- a/tutorials/editor/default_key_mapping.rst +++ b/tutorials/editor/default_key_mapping.rst @@ -255,7 +255,6 @@ Text Editor +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Fold/Unfold Line | :kbd:`Alt + F` | :kbd:`Alt + F` | ``script_text_editor/toggle_fold_line`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ -| Clone Down | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/clone_down`` | | Duplicate Selection | :kbd:`Ctrl + Shift + D` | :kbd:`Cmd + Shift + C` | ``script_text_editor/duplicate_selection`` | +---------------------------+--------------------------+----------------------------+-------------------------------------------------+ | Complete Symbol | :kbd:`Ctrl + Space` | :kbd:`Ctrl + Space` | ``script_text_editor/complete_symbol`` |