Skip to content

Commit

Permalink
Document comment keywords being highlighted in the script editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinou committed Nov 1, 2023
1 parent d1506e0 commit 0756294
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tutorials/scripting/gdscript/gdscript_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,30 @@ considered a comment.

# This is a comment.

.. tip::

In the Godot script editor, special keywords are highlighted within comments
to bring the user's attention to specific comments:

- **Critical** *(appears in red)*: ``ALERT``, ``ATTENTION``, ``DANGER``, ``HACK``,
``SECURITY``
- **Warning** *(appears in yellow)*: ``BUG``, ``CAUTION``, ``DEPRECATED``, ``FIXME``,
``TASK``, ``TBD``, ``TODO``, ``WARNING``
- **Notice** *(appears in green)*: ``NOTE``, ``NOTICE``, ``TEST``, ``TESTING``

These keywords are case-sensitive, so they must be written in uppercase for them
to be recognized:

::

# In the example below, "TODO" will appear in yellow by default.
# The `:` symbol after the keyword is not required, but it's often used.

# TODO: Add more items for the player to choose from.

The list of highlighted keywords and their colors can be changed in the **Text
Editor > Theme > Comment Markers** section of the Editor Settings.

.. _doc_gdscript_builtin_types:

Line continuation
Expand Down

0 comments on commit 0756294

Please sign in to comment.