.. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/master/docs/gdscript/doc/classes/CodeEdit.xml. .. _class_CodeEdit: CodeEdit ======== **Inherits:** :ref:`TextEdit` **<** :ref:`Control` **<** :ref:`CanvasItem` **<** :ref:`Node` **<** :ref:`Object` .. container:: contribute There is currently no description for this class. Please help us by :ref:`contributing one `! .. rst-class:: classref-reftable-group Properties ---------- .. table:: :widths: auto +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`auto_brace_completion_enabled` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`auto_brace_completion_highlight_matching` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`Dictionary` | :ref:`auto_brace_completion_pairs` | ``{ "\"": "\"", "'": "'", "(": ")", "[": "]", "{": "}" }`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`code_completion_enabled` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`String[]` | :ref:`code_completion_prefixes` | ``[]`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`String[]` | :ref:`delimiter_comments` | ``[]`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`String[]` | :ref:`delimiter_strings` | ``["' '", "\" \""]`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_draw_bookmarks` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_draw_breakpoints_gutter` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_draw_executing_lines` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_draw_fold_gutter` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_draw_line_numbers` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`gutters_zero_pad_line_numbers` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`indent_automatic` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`String[]` | :ref:`indent_automatic_prefixes` | ``[":", "{", "[", "("]`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`int` | :ref:`indent_size` | ``4`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`indent_use_spaces` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`LayoutDirection` | layout_direction | ``2`` (overrides :ref:`Control`) | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`line_folding` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`int[]` | :ref:`line_length_guidelines` | ``[]`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`symbol_lookup_on_click` | ``false`` | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`TextDirection` | text_direction | ``1`` (overrides :ref:`TextEdit`) | +------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+ .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`_confirm_code_completion` **(** :ref:`bool` replace **)** |virtual| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Dictionary[]` | :ref:`_filter_code_completion_candidates` **(** :ref:`Dictionary[]` candidates **)** |virtual| |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`_request_code_completion` **(** :ref:`bool` force **)** |virtual| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_auto_brace_completion_pair` **(** :ref:`String` start_key, :ref:`String` end_key **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_code_completion_option` **(** :ref:`CodeCompletionKind` type, :ref:`String` display_text, :ref:`String` insert_text, :ref:`Color` text_color=Color(1, 1, 1, 1), :ref:`Resource` icon=null, :ref:`Variant` value=null, :ref:`int` location=1024 **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_comment_delimiter` **(** :ref:`String` start_key, :ref:`String` end_key, :ref:`bool` line_only=false **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_string_delimiter` **(** :ref:`String` start_key, :ref:`String` end_key, :ref:`bool` line_only=false **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`can_fold_line` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`cancel_code_completion` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_bookmarked_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_breakpointed_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_comment_delimiters` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_executing_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_string_delimiters` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`confirm_code_completion` **(** :ref:`bool` replace=false **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`convert_indent` **(** :ref:`int` from_line=-1, :ref:`int` to_line=-1 **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`create_code_region` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`delete_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`do_indent` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`duplicate_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`duplicate_selection` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`fold_all_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`fold_line` **(** :ref:`int` line **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_auto_brace_completion_close_key` **(** :ref:`String` open_key **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PackedInt32Array` | :ref:`get_bookmarked_lines` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PackedInt32Array` | :ref:`get_breakpointed_lines` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Dictionary` | :ref:`get_code_completion_option` **(** :ref:`int` index **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Dictionary[]` | :ref:`get_code_completion_options` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_code_completion_selected_index` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_code_region_end_tag` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_code_region_start_tag` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_delimiter_end_key` **(** :ref:`int` delimiter_index **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_delimiter_end_position` **(** :ref:`int` line, :ref:`int` column **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_delimiter_start_key` **(** :ref:`int` delimiter_index **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_delimiter_start_position` **(** :ref:`int` line, :ref:`int` column **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PackedInt32Array` | :ref:`get_executing_lines` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int[]` | :ref:`get_folded_lines` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_text_for_code_completion` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_text_for_symbol_lookup` **(** **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_text_with_cursor_char` **(** :ref:`int` line, :ref:`int` column **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_auto_brace_completion_close_key` **(** :ref:`String` close_key **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_auto_brace_completion_open_key` **(** :ref:`String` open_key **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_comment_delimiter` **(** :ref:`String` start_key **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_string_delimiter` **(** :ref:`String` start_key **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`indent_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`is_in_comment` **(** :ref:`int` line, :ref:`int` column=-1 **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`is_in_string` **(** :ref:`int` line, :ref:`int` column=-1 **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_bookmarked` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_breakpointed` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_code_region_end` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_code_region_start` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_executing` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_line_folded` **(** :ref:`int` line **)** |const| | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`move_lines_down` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`move_lines_up` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`remove_comment_delimiter` **(** :ref:`String` start_key **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`remove_string_delimiter` **(** :ref:`String` start_key **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`request_code_completion` **(** :ref:`bool` force=false **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_code_completion_selected_index` **(** :ref:`int` index **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_code_hint` **(** :ref:`String` code_hint **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_code_hint_draw_below` **(** :ref:`bool` draw_below **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_code_region_tags` **(** :ref:`String` start="region", :ref:`String` end="endregion" **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_line_as_bookmarked` **(** :ref:`int` line, :ref:`bool` bookmarked **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_line_as_breakpoint` **(** :ref:`int` line, :ref:`bool` breakpointed **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_line_as_executing` **(** :ref:`int` line, :ref:`bool` executing **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_symbol_lookup_word_as_valid` **(** :ref:`bool` valid **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`toggle_foldable_line` **(** :ref:`int` line **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`toggle_foldable_lines_at_carets` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`unfold_all_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`unfold_line` **(** :ref:`int` line **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`unindent_lines` **(** **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`update_code_completion_options` **(** :ref:`bool` force **)** | +-------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-reftable-group Theme Properties ---------------- .. table:: :widths: auto +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`bookmark_color` | ``Color(0.5, 0.64, 1, 0.8)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`brace_mismatch_color` | ``Color(1, 0.2, 0.2, 1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`breakpoint_color` | ``Color(0.9, 0.29, 0.3, 1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`code_folding_color` | ``Color(0.8, 0.8, 0.8, 0.8)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`completion_background_color` | ``Color(0.17, 0.16, 0.2, 1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`completion_existing_color` | ``Color(0.87, 0.87, 0.87, 0.13)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`completion_scroll_color` | ``Color(1, 1, 1, 0.29)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`completion_scroll_hovered_color` | ``Color(1, 1, 1, 0.4)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`completion_selected_color` | ``Color(0.26, 0.26, 0.27, 1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`executing_line_color` | ``Color(0.98, 0.89, 0.27, 1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`folded_code_region_color` | ``Color(0.68, 0.46, 0.77, 0.2)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`line_length_guideline_color` | ``Color(0.3, 0.5, 0.8, 0.1)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Color` | :ref:`line_number_color` | ``Color(0.67, 0.67, 0.67, 0.4)`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`int` | :ref:`completion_lines` | ``7`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`int` | :ref:`completion_max_width` | ``50`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`int` | :ref:`completion_scroll_width` | ``6`` | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`bookmark` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`breakpoint` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`can_fold` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`can_fold_code_region` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`executing_line` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`folded` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`folded_code_region` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`Texture2D` | :ref:`folded_eol_icon` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ | :ref:`StyleBox` | :ref:`completion` | | +-----------------------------------+----------------------------------------------------------------------------------------------------+-----------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Signals ------- .. _class_CodeEdit_signal_breakpoint_toggled: .. rst-class:: classref-signal **breakpoint_toggled** **(** :ref:`int` line **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_signal_code_completion_requested: .. rst-class:: classref-signal **code_completion_requested** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_signal_symbol_lookup: .. rst-class:: classref-signal **symbol_lookup** **(** :ref:`String` symbol, :ref:`int` line, :ref:`int` column **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_signal_symbol_validate: .. rst-class:: classref-signal **symbol_validate** **(** :ref:`String` symbol **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Enumerations ------------ .. _enum_CodeEdit_CodeCompletionKind: .. rst-class:: classref-enumeration enum **CodeCompletionKind**: .. _class_CodeEdit_constant_KIND_CLASS: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_CLASS** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_FUNCTION: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_FUNCTION** = ``1`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_SIGNAL: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_SIGNAL** = ``2`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_VARIABLE: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_VARIABLE** = ``3`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_MEMBER: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_MEMBER** = ``4`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_ENUM: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_ENUM** = ``5`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_CONSTANT: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_CONSTANT** = ``6`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_NODE_PATH: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_NODE_PATH** = ``7`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_FILE_PATH: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_FILE_PATH** = ``8`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_KIND_PLAIN_TEXT: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionKind` **KIND_PLAIN_TEXT** = ``9`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _enum_CodeEdit_CodeCompletionLocation: .. rst-class:: classref-enumeration enum **CodeCompletionLocation**: .. _class_CodeEdit_constant_LOCATION_LOCAL: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionLocation` **LOCATION_LOCAL** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_LOCATION_PARENT_MASK: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionLocation` **LOCATION_PARENT_MASK** = ``256`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_LOCATION_OTHER_USER_CODE: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionLocation` **LOCATION_OTHER_USER_CODE** = ``512`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_CodeEdit_constant_LOCATION_OTHER: .. rst-class:: classref-enumeration-constant :ref:`CodeCompletionLocation` **LOCATION_OTHER** = ``1024`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Property Descriptions --------------------- .. _class_CodeEdit_property_auto_brace_completion_enabled: .. rst-class:: classref-property :ref:`bool` **auto_brace_completion_enabled** = ``false`` .. rst-class:: classref-property-setget - void **set_auto_brace_completion_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_auto_brace_completion_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_auto_brace_completion_highlight_matching: .. rst-class:: classref-property :ref:`bool` **auto_brace_completion_highlight_matching** = ``false`` .. rst-class:: classref-property-setget - void **set_highlight_matching_braces_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_highlight_matching_braces_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_auto_brace_completion_pairs: .. rst-class:: classref-property :ref:`Dictionary` **auto_brace_completion_pairs** = ``{ "\"": "\"", "'": "'", "(": ")", "[": "]", "{": "}" }`` .. rst-class:: classref-property-setget - void **set_auto_brace_completion_pairs** **(** :ref:`Dictionary` value **)** - :ref:`Dictionary` **get_auto_brace_completion_pairs** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_code_completion_enabled: .. rst-class:: classref-property :ref:`bool` **code_completion_enabled** = ``false`` .. rst-class:: classref-property-setget - void **set_code_completion_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_code_completion_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_code_completion_prefixes: .. rst-class:: classref-property :ref:`String[]` **code_completion_prefixes** = ``[]`` .. rst-class:: classref-property-setget - void **set_code_completion_prefixes** **(** :ref:`String[]` value **)** - :ref:`String[]` **get_code_completion_prefixes** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_delimiter_comments: .. rst-class:: classref-property :ref:`String[]` **delimiter_comments** = ``[]`` .. rst-class:: classref-property-setget - void **set_comment_delimiters** **(** :ref:`String[]` value **)** - :ref:`String[]` **get_comment_delimiters** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_delimiter_strings: .. rst-class:: classref-property :ref:`String[]` **delimiter_strings** = ``["' '", "\" \""]`` .. rst-class:: classref-property-setget - void **set_string_delimiters** **(** :ref:`String[]` value **)** - :ref:`String[]` **get_string_delimiters** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_draw_bookmarks: .. rst-class:: classref-property :ref:`bool` **gutters_draw_bookmarks** = ``false`` .. rst-class:: classref-property-setget - void **set_draw_bookmarks_gutter** **(** :ref:`bool` value **)** - :ref:`bool` **is_drawing_bookmarks_gutter** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_draw_breakpoints_gutter: .. rst-class:: classref-property :ref:`bool` **gutters_draw_breakpoints_gutter** = ``false`` .. rst-class:: classref-property-setget - void **set_draw_breakpoints_gutter** **(** :ref:`bool` value **)** - :ref:`bool` **is_drawing_breakpoints_gutter** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_draw_executing_lines: .. rst-class:: classref-property :ref:`bool` **gutters_draw_executing_lines** = ``false`` .. rst-class:: classref-property-setget - void **set_draw_executing_lines_gutter** **(** :ref:`bool` value **)** - :ref:`bool` **is_drawing_executing_lines_gutter** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_draw_fold_gutter: .. rst-class:: classref-property :ref:`bool` **gutters_draw_fold_gutter** = ``false`` .. rst-class:: classref-property-setget - void **set_draw_fold_gutter** **(** :ref:`bool` value **)** - :ref:`bool` **is_drawing_fold_gutter** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_draw_line_numbers: .. rst-class:: classref-property :ref:`bool` **gutters_draw_line_numbers** = ``false`` .. rst-class:: classref-property-setget - void **set_draw_line_numbers** **(** :ref:`bool` value **)** - :ref:`bool` **is_draw_line_numbers_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_gutters_zero_pad_line_numbers: .. rst-class:: classref-property :ref:`bool` **gutters_zero_pad_line_numbers** = ``false`` .. rst-class:: classref-property-setget - void **set_line_numbers_zero_padded** **(** :ref:`bool` value **)** - :ref:`bool` **is_line_numbers_zero_padded** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_indent_automatic: .. rst-class:: classref-property :ref:`bool` **indent_automatic** = ``false`` .. rst-class:: classref-property-setget - void **set_auto_indent_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_auto_indent_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_indent_automatic_prefixes: .. rst-class:: classref-property :ref:`String[]` **indent_automatic_prefixes** = ``[":", "{", "[", "("]`` .. rst-class:: classref-property-setget - void **set_auto_indent_prefixes** **(** :ref:`String[]` value **)** - :ref:`String[]` **get_auto_indent_prefixes** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_indent_size: .. rst-class:: classref-property :ref:`int` **indent_size** = ``4`` .. rst-class:: classref-property-setget - void **set_indent_size** **(** :ref:`int` value **)** - :ref:`int` **get_indent_size** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_indent_use_spaces: .. rst-class:: classref-property :ref:`bool` **indent_use_spaces** = ``false`` .. rst-class:: classref-property-setget - void **set_indent_using_spaces** **(** :ref:`bool` value **)** - :ref:`bool` **is_indent_using_spaces** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_line_folding: .. rst-class:: classref-property :ref:`bool` **line_folding** = ``false`` .. rst-class:: classref-property-setget - void **set_line_folding_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_line_folding_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_line_length_guidelines: .. rst-class:: classref-property :ref:`int[]` **line_length_guidelines** = ``[]`` .. rst-class:: classref-property-setget - void **set_line_length_guidelines** **(** :ref:`int[]` value **)** - :ref:`int[]` **get_line_length_guidelines** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_property_symbol_lookup_on_click: .. rst-class:: classref-property :ref:`bool` **symbol_lookup_on_click** = ``false`` .. rst-class:: classref-property-setget - void **set_symbol_lookup_on_click_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_symbol_lookup_on_click_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_CodeEdit_private_method__confirm_code_completion: .. rst-class:: classref-method void **_confirm_code_completion** **(** :ref:`bool` replace **)** |virtual| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_private_method__filter_code_completion_candidates: .. rst-class:: classref-method :ref:`Dictionary[]` **_filter_code_completion_candidates** **(** :ref:`Dictionary[]` candidates **)** |virtual| |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_private_method__request_code_completion: .. rst-class:: classref-method void **_request_code_completion** **(** :ref:`bool` force **)** |virtual| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_add_auto_brace_completion_pair: .. rst-class:: classref-method void **add_auto_brace_completion_pair** **(** :ref:`String` start_key, :ref:`String` end_key **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_add_code_completion_option: .. rst-class:: classref-method void **add_code_completion_option** **(** :ref:`CodeCompletionKind` type, :ref:`String` display_text, :ref:`String` insert_text, :ref:`Color` text_color=Color(1, 1, 1, 1), :ref:`Resource` icon=null, :ref:`Variant` value=null, :ref:`int` location=1024 **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_add_comment_delimiter: .. rst-class:: classref-method void **add_comment_delimiter** **(** :ref:`String` start_key, :ref:`String` end_key, :ref:`bool` line_only=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_add_string_delimiter: .. rst-class:: classref-method void **add_string_delimiter** **(** :ref:`String` start_key, :ref:`String` end_key, :ref:`bool` line_only=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_can_fold_line: .. rst-class:: classref-method :ref:`bool` **can_fold_line** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_cancel_code_completion: .. rst-class:: classref-method void **cancel_code_completion** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_clear_bookmarked_lines: .. rst-class:: classref-method void **clear_bookmarked_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_clear_breakpointed_lines: .. rst-class:: classref-method void **clear_breakpointed_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_clear_comment_delimiters: .. rst-class:: classref-method void **clear_comment_delimiters** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_clear_executing_lines: .. rst-class:: classref-method void **clear_executing_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_clear_string_delimiters: .. rst-class:: classref-method void **clear_string_delimiters** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_confirm_code_completion: .. rst-class:: classref-method void **confirm_code_completion** **(** :ref:`bool` replace=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_convert_indent: .. rst-class:: classref-method void **convert_indent** **(** :ref:`int` from_line=-1, :ref:`int` to_line=-1 **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_create_code_region: .. rst-class:: classref-method void **create_code_region** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_delete_lines: .. rst-class:: classref-method void **delete_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_do_indent: .. rst-class:: classref-method void **do_indent** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_duplicate_lines: .. rst-class:: classref-method void **duplicate_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_duplicate_selection: .. rst-class:: classref-method void **duplicate_selection** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_fold_all_lines: .. rst-class:: classref-method void **fold_all_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_fold_line: .. rst-class:: classref-method void **fold_line** **(** :ref:`int` line **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_auto_brace_completion_close_key: .. rst-class:: classref-method :ref:`String` **get_auto_brace_completion_close_key** **(** :ref:`String` open_key **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_bookmarked_lines: .. rst-class:: classref-method :ref:`PackedInt32Array` **get_bookmarked_lines** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_breakpointed_lines: .. rst-class:: classref-method :ref:`PackedInt32Array` **get_breakpointed_lines** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_code_completion_option: .. rst-class:: classref-method :ref:`Dictionary` **get_code_completion_option** **(** :ref:`int` index **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_code_completion_options: .. rst-class:: classref-method :ref:`Dictionary[]` **get_code_completion_options** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_code_completion_selected_index: .. rst-class:: classref-method :ref:`int` **get_code_completion_selected_index** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_code_region_end_tag: .. rst-class:: classref-method :ref:`String` **get_code_region_end_tag** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_code_region_start_tag: .. rst-class:: classref-method :ref:`String` **get_code_region_start_tag** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_delimiter_end_key: .. rst-class:: classref-method :ref:`String` **get_delimiter_end_key** **(** :ref:`int` delimiter_index **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_delimiter_end_position: .. rst-class:: classref-method :ref:`Vector2` **get_delimiter_end_position** **(** :ref:`int` line, :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_delimiter_start_key: .. rst-class:: classref-method :ref:`String` **get_delimiter_start_key** **(** :ref:`int` delimiter_index **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_delimiter_start_position: .. rst-class:: classref-method :ref:`Vector2` **get_delimiter_start_position** **(** :ref:`int` line, :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_executing_lines: .. rst-class:: classref-method :ref:`PackedInt32Array` **get_executing_lines** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_folded_lines: .. rst-class:: classref-method :ref:`int[]` **get_folded_lines** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_text_for_code_completion: .. rst-class:: classref-method :ref:`String` **get_text_for_code_completion** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_text_for_symbol_lookup: .. rst-class:: classref-method :ref:`String` **get_text_for_symbol_lookup** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_get_text_with_cursor_char: .. rst-class:: classref-method :ref:`String` **get_text_with_cursor_char** **(** :ref:`int` line, :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_has_auto_brace_completion_close_key: .. rst-class:: classref-method :ref:`bool` **has_auto_brace_completion_close_key** **(** :ref:`String` close_key **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_has_auto_brace_completion_open_key: .. rst-class:: classref-method :ref:`bool` **has_auto_brace_completion_open_key** **(** :ref:`String` open_key **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_has_comment_delimiter: .. rst-class:: classref-method :ref:`bool` **has_comment_delimiter** **(** :ref:`String` start_key **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_has_string_delimiter: .. rst-class:: classref-method :ref:`bool` **has_string_delimiter** **(** :ref:`String` start_key **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_indent_lines: .. rst-class:: classref-method void **indent_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_in_comment: .. rst-class:: classref-method :ref:`int` **is_in_comment** **(** :ref:`int` line, :ref:`int` column=-1 **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_in_string: .. rst-class:: classref-method :ref:`int` **is_in_string** **(** :ref:`int` line, :ref:`int` column=-1 **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_bookmarked: .. rst-class:: classref-method :ref:`bool` **is_line_bookmarked** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_breakpointed: .. rst-class:: classref-method :ref:`bool` **is_line_breakpointed** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_code_region_end: .. rst-class:: classref-method :ref:`bool` **is_line_code_region_end** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_code_region_start: .. rst-class:: classref-method :ref:`bool` **is_line_code_region_start** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_executing: .. rst-class:: classref-method :ref:`bool` **is_line_executing** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_is_line_folded: .. rst-class:: classref-method :ref:`bool` **is_line_folded** **(** :ref:`int` line **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_move_lines_down: .. rst-class:: classref-method void **move_lines_down** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_move_lines_up: .. rst-class:: classref-method void **move_lines_up** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_remove_comment_delimiter: .. rst-class:: classref-method void **remove_comment_delimiter** **(** :ref:`String` start_key **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_remove_string_delimiter: .. rst-class:: classref-method void **remove_string_delimiter** **(** :ref:`String` start_key **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_request_code_completion: .. rst-class:: classref-method void **request_code_completion** **(** :ref:`bool` force=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_code_completion_selected_index: .. rst-class:: classref-method void **set_code_completion_selected_index** **(** :ref:`int` index **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_code_hint: .. rst-class:: classref-method void **set_code_hint** **(** :ref:`String` code_hint **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_code_hint_draw_below: .. rst-class:: classref-method void **set_code_hint_draw_below** **(** :ref:`bool` draw_below **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_code_region_tags: .. rst-class:: classref-method void **set_code_region_tags** **(** :ref:`String` start="region", :ref:`String` end="endregion" **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_line_as_bookmarked: .. rst-class:: classref-method void **set_line_as_bookmarked** **(** :ref:`int` line, :ref:`bool` bookmarked **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_line_as_breakpoint: .. rst-class:: classref-method void **set_line_as_breakpoint** **(** :ref:`int` line, :ref:`bool` breakpointed **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_line_as_executing: .. rst-class:: classref-method void **set_line_as_executing** **(** :ref:`int` line, :ref:`bool` executing **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_set_symbol_lookup_word_as_valid: .. rst-class:: classref-method void **set_symbol_lookup_word_as_valid** **(** :ref:`bool` valid **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_toggle_foldable_line: .. rst-class:: classref-method void **toggle_foldable_line** **(** :ref:`int` line **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_toggle_foldable_lines_at_carets: .. rst-class:: classref-method void **toggle_foldable_lines_at_carets** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_unfold_all_lines: .. rst-class:: classref-method void **unfold_all_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_unfold_line: .. rst-class:: classref-method void **unfold_line** **(** :ref:`int` line **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_unindent_lines: .. rst-class:: classref-method void **unindent_lines** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_method_update_code_completion_options: .. rst-class:: classref-method void **update_code_completion_options** **(** :ref:`bool` force **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Theme Property Descriptions --------------------------- .. _class_CodeEdit_theme_color_bookmark_color: .. rst-class:: classref-themeproperty :ref:`Color` **bookmark_color** = ``Color(0.5, 0.64, 1, 0.8)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_brace_mismatch_color: .. rst-class:: classref-themeproperty :ref:`Color` **brace_mismatch_color** = ``Color(1, 0.2, 0.2, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_breakpoint_color: .. rst-class:: classref-themeproperty :ref:`Color` **breakpoint_color** = ``Color(0.9, 0.29, 0.3, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_code_folding_color: .. rst-class:: classref-themeproperty :ref:`Color` **code_folding_color** = ``Color(0.8, 0.8, 0.8, 0.8)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_completion_background_color: .. rst-class:: classref-themeproperty :ref:`Color` **completion_background_color** = ``Color(0.17, 0.16, 0.2, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_completion_existing_color: .. rst-class:: classref-themeproperty :ref:`Color` **completion_existing_color** = ``Color(0.87, 0.87, 0.87, 0.13)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_completion_scroll_color: .. rst-class:: classref-themeproperty :ref:`Color` **completion_scroll_color** = ``Color(1, 1, 1, 0.29)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_completion_scroll_hovered_color: .. rst-class:: classref-themeproperty :ref:`Color` **completion_scroll_hovered_color** = ``Color(1, 1, 1, 0.4)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_completion_selected_color: .. rst-class:: classref-themeproperty :ref:`Color` **completion_selected_color** = ``Color(0.26, 0.26, 0.27, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_executing_line_color: .. rst-class:: classref-themeproperty :ref:`Color` **executing_line_color** = ``Color(0.98, 0.89, 0.27, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_folded_code_region_color: .. rst-class:: classref-themeproperty :ref:`Color` **folded_code_region_color** = ``Color(0.68, 0.46, 0.77, 0.2)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_line_length_guideline_color: .. rst-class:: classref-themeproperty :ref:`Color` **line_length_guideline_color** = ``Color(0.3, 0.5, 0.8, 0.1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_color_line_number_color: .. rst-class:: classref-themeproperty :ref:`Color` **line_number_color** = ``Color(0.67, 0.67, 0.67, 0.4)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_constant_completion_lines: .. rst-class:: classref-themeproperty :ref:`int` **completion_lines** = ``7`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_constant_completion_max_width: .. rst-class:: classref-themeproperty :ref:`int` **completion_max_width** = ``50`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_constant_completion_scroll_width: .. rst-class:: classref-themeproperty :ref:`int` **completion_scroll_width** = ``6`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_bookmark: .. rst-class:: classref-themeproperty :ref:`Texture2D` **bookmark** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_breakpoint: .. rst-class:: classref-themeproperty :ref:`Texture2D` **breakpoint** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_can_fold: .. rst-class:: classref-themeproperty :ref:`Texture2D` **can_fold** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_can_fold_code_region: .. rst-class:: classref-themeproperty :ref:`Texture2D` **can_fold_code_region** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_executing_line: .. rst-class:: classref-themeproperty :ref:`Texture2D` **executing_line** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_folded: .. rst-class:: classref-themeproperty :ref:`Texture2D` **folded** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_folded_code_region: .. rst-class:: classref-themeproperty :ref:`Texture2D` **folded_code_region** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_icon_folded_eol_icon: .. rst-class:: classref-themeproperty :ref:`Texture2D` **folded_eol_icon** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_CodeEdit_theme_style_completion: .. rst-class:: classref-themeproperty :ref:`StyleBox` **completion** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)` .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`