Skip to content

Using Cursor (Alternative)

Hit your Claude Code session limit? No worries! Cursor is an excellent alternative that works similarly but with a visual interface.


Cursor is an AI-powered code editor built on top of VS Code. Instead of typing in a terminal like Claude Code, you get a full visual editor where you can:

  • Chat with AI in a sidebar
  • Highlight code and ask AI to modify it
  • Generate entire files with natural language
  • Get inline code suggestions as you type
🖼️
[Screenshot: Cursor editor interface]
The Cursor IDE showing the code editor on the left and AI chat on the right
FeatureClaude CodeCursor
InterfaceTerminal (command line)Visual editor (like VS Code)
Learning curveSteeper for beginnersMore familiar if you’ve used any editor
Session limitsYes (on free tier)Generous free tier
Code editingCreates/modifies filesEdit + AI suggestions inline
Best forQuick projects, automationLonger coding sessions

Go to cursor.com and download the installer for your operating system.

🖼️
[Screenshot: Cursor download page]
The Cursor website with download buttons for Mac, Windows, and Linux
  • Mac: Open the .dmg file and drag Cursor to Applications
  • Windows: Run the installer and follow the prompts

Open Cursor and create a free account (or sign in with GitHub/Google).

✅ Checkpoint

You should now see the Cursor editor with a welcome screen.

  1. Click File → Open Folder (or Cmd/Ctrl + O)
  2. Navigate to your project folder
  3. Click Open

You’ll see your project files in the sidebar on the left.

Press Cmd + L (Mac) or Ctrl + L (Windows) to open the AI chat.

Type your request just like you would in Claude Code:

Create a simple landing page with a header, hero section,
and three feature cards. Use modern CSS with flexbox.
🖼️
[Screenshot: Cursor chat panel]
The AI chat sidebar with a conversation about creating a landing page
  1. Select some code (or place your cursor where you want changes)
  2. Press Cmd + K (Mac) or Ctrl + K (Windows)
  3. Type what you want to change
Add a hover effect to this button that scales it up slightly

Cursor will show you a preview of the changes. Press Enter to accept.

As you type code, Cursor suggests completions. Press Tab to accept them.

ShortcutAction
Cmd/Ctrl + LOpen AI chat panel
Cmd/Ctrl + KInline AI edit
Cmd/Ctrl + Shift + LAdd selection to chat
TabAccept AI suggestion
EscDismiss suggestion
Cmd/Ctrl + SSave file
Cmd/Ctrl + PQuick file search

Let’s recreate what we’d do in Claude Code, but in Cursor:

Right-click in the sidebar → New File → name it index.html

With the empty file open, press Cmd/Ctrl + K and type:

Create a personal portfolio page with:
- Hero section with name and tagline
- About section
- Skills section with 4 cards
- Contact section
Use modern CSS, include it in a style tag
  • Right-click on index.htmlOpen with Live Server (if you have the extension)
  • Or just double-click the file to open it in your browser

Want to tweak something? Select the code, press Cmd/Ctrl + K:

Change the color scheme to blue and white
  • You want the fastest path from idea to code
  • You’re comfortable with the terminal
  • You need quick automation or scripting
  • You’re doing a quick prototype
  • You hit your Claude Code session limit
  • You prefer a visual interface
  • You want to edit code manually alongside AI
  • You’re doing longer coding sessions
  • You want inline suggestions as you type
💡 Cursor Tips:
  • Be specific in your prompts, just like with Claude Code
  • Use Cmd/Ctrl + K for quick inline changes
  • Select context - highlight relevant code before asking AI to modify it
  • Save often - Cmd/Ctrl + S after accepting AI changes
  • Use chat for bigger tasks, inline edit for small tweaks

You can use both tools on the same project! Your files are just files on your computer.

  1. Start a project with Claude Code
  2. Hit a session limit
  3. Open the same folder in Cursor
  4. Continue where you left off
  5. Go back to Claude Code later when limits reset
✅ Checkpoint

You now have a backup option when Claude Code isn't available. Keep building!