Which shortcut key can help me "Go to implementations"

Hi,

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.

F12 or cmd+F12 works. But cmd+click not. What’s the possible cause?

Solved by:

  1. rm -rf ~/Library/Application\ Support/Cursor
  2. reopen Cursor