The Eiffel VS Code extension integrates with VS Code’s symbol search to let you quickly navigate classes and features in your project.
To search for a class:
Ctrl+T, or#This displays a list of all classes available in the current Eiffel project. As you continue typing, the list is automatically filtered until you find the class you are looking for.

To search for a feature of a specific class:
#, orCtrl+TThen type . after the class name.
This displays the list of all features of the class (both declared and inherited).
As you type, the list is filtered to match your input.
The tooltip indicates filename of the class in which each feature is declared.

To search for a feature declared in the current class:
Ctrl+Shift+O, or@ in the Search BarThis displays all features declared in the current class.
You can continue typing to filter the list until you find the desired feature.

The list of features declared in the current class is also available in the Outline panel, which provides a structured view of the class and allows quick navigation.
