In Cursor, I have an Abstract class and some Implementation classes of it. How to find the implementation classes by a shortcut? For example, I press “cmd+F12” on AbstractUser and no implementation classes come.
from abc import ABC, abstractmethod
from user import User
class AbstractUser(ABC): @abstractmethod
def get_user_by_id(self, user_id: int) → User:
pass
Hey, I just checked. If you press cmd + click, it will take you to the implementation. You can also use the F12 key. If you have a standard Mac keyboard, try pressing fn + F12. Also, make sure you have the Python extensions installed.