Problem when using Tab in cursor

Hey, I can see a screenshot from Developer Tools.

The main issue that stands out is Error: spawn /usr/bin/git ENOENT. This means Cursor can’t find git on your system. Without git, KnowledgeBaseService codebase indexing won’t work, and that directly affects the quality and behavior of Cursor Tab completions.

The ConnectError: [unauthenticated] You must be a team member errors for getTeamCommands are expected if you’re not on a Team plan. You can ignore them.

A few questions so I can help more precisely:

  1. Are you working via WSL or Remote SSH? I see vscode-remote in the logs.
  2. If yes, is git installed inside WSL? Check by running git --version in the WSL terminal.
  3. What Cursor version and OS are you on?

If git isn’t installed, on Ubuntu or WSL you can do:

sudo apt update && sudo apt install git

After installing git, restart Cursor and check if Cursor Tab suggestions show up. Let me know how it goes.