
VS Code's sticky scroll feature will stick the nested structure of your code to the top of your editor.
For example, in the screenshot above, we can see that the lines 29, 161, and 174, define the nesting inside which the code return self.button lies.
So, we conclude that return self.button is a return statement inside the method def control(self) -> Button that is a method of the class Pressed(Message, bubble=True), which is a class that is nested inside class Button(Static, can_focus=True).
To toggle this feature on/off, all you need to do is open your command palette (Cmd/Ctrl + Shift + P) and type โtoggle sticky scrollโ.
That's it for now! Stay tuned and I'll see you around!
Every Monday, you'll get a Python deep dive that unpacks a topic with analogies, diagrams, and code examples so you can write clearer, faster, and more idiomatic code.