Troubleshooting Codebase Reading Issues
info
If Cursor is having trouble reading your codebase or files, follow this guide to resolve common issues.
Common Symptoms
- Cursor can't see project files
- AI features not working with codebase
- File tree not updating
- Search functionality not working
Quick Fixes
1. Refresh the File Tree
The fastest solution is often to refresh your file tree:
- Right-click on the file explorer
- Select "Refresh"
- Wait for the file tree to update
2. Check File Permissions
- Windows
- macOS/Linux
- Right-click on your project folder
- Select "Properties"
- Go to "Security" tab
- Ensure your user has "Read" and "Write" permissions
# Check permissions
ls -la /path/to/project
# Fix permissions if needed
chmod -R u+rw /path/to/project
3. Verify .gitignore
and .cursorignore
Sometimes files are intentionally ignored. Check:
.gitignore
file contents.cursorignore
file contents- Remove any patterns that shouldn't be ignored
Deep Dive Solutions
File System Watcher Issues
If Cursor isn't detecting file changes:
.vscode/settings.json
{
"files.watcherExclude": {
"**/node_modules/**": true,
"**/dist/**": true,
// Add other directories you want to exclude
}
}
Large Codebase Handling
For large codebases:
-
Increase Memory Limit
.cursor/settings.json{
"files.maxMemoryForLargeFilesMB": 4096
} -
Optimize File Watching
- Exclude unnecessary directories
- Use workspace trust features
- Consider using workspace storage
Git Integration Issues
If Git-related features aren't working:
-
Check Git installation:
git --version
-
Verify Git configuration:
git config --list
-
Reset Git cache:
git rm -r --cached .
git add .
Prevention Tips
-
Clean Project Structure
- Organize files logically
- Use appropriate
.gitignore
- Keep root directory clean
-
Regular Maintenance
- Clear editor cache regularly
- Update Cursor frequently
- Monitor system resources
-
Performance Optimization
- Exclude large binary files
- Use workspace storage
- Implement proper ignore patterns
Advanced Troubleshooting
Logging and Diagnostics
Enable detailed logging:
- Open Command Palette (Ctrl/Cmd + Shift + P)
- Type "Developer: Set Log Level"
- Select "Trace"
Cache Reset
If problems persist:
- Close Cursor
- Delete cache directories:
- Windows:
%APPDATA%\Cursor\Cache
- macOS:
~/Library/Application Support/Cursor/Cache
- Linux:
~/.config/Cursor/Cache
- Windows:
- Restart Cursor
Workspace Trust
Configure workspace trust:
- Open Command Palette
- Search for "Workspace Trust"
- Configure trust settings for your project
When to Contact Support
Contact Cursor support if:
- Issues persist after trying all solutions
- You encounter data loss
- Performance degrades significantly
- You find security concerns
tip
Keep your error logs and system information ready when contacting support