Does Godot Have A Pragma Mark Equivalent from Xcode?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By learis

In Xcode you could type #pragma mark followed by a title, and then the title would appear in order with other pragma mark titles in a dropdown menu. By selecting one of them from the dropdown, you would auto-scroll to get to the pragma mark label you had in your code. So it’s basically like a bookmark for immediately scrolling to parts of your code. It was really useful for me. Is there anything similar in Godot?

:bust_in_silhouette: Reply From: gmayr

As far as I know, no.

But in the bottom left part of the editor panel (under the file list), you have the list of function of the current file.

With smart function naming and function order in the file, that is the same, minus category titles.