Quick overview of functionality in Cursor:

Autocomplete with Tab

Tab is the autocomplete model we've trained in-house. It's a great way to ease into AI assisted coding if you're not used to it. With Tab, you can:
  • Autocomplete multiple lines and blocks of code
  • Jump in and across files to the next autocomplete suggestion
 
Let's try it out:
  1. Start typing the beginning of a function: function calculate
  1. Tab suggestions appear automatically
  1. Press Tab to accept the suggestion
  1. Cursor suggests parameters and function bodies

Inline Edit a selection

  1. Select the function you just created
  1. Press Cmd K
  1. Type "make this function calculate fibonacci numbers"
  1. Press Return to apply the changes
  1. Cursor adds imports and documentation

Chat with Agent

  1. Open the Chat panel (Cmd I)
  1. As an example you can Ask: "Add tests for this function and run them"
  1. Agent will create a test file, write test cases, and run them for you
 
page icon
Cursor Concepts - Read about all of Cursor’s Functionality here
 
 

Loading...