In Cursor, which key opens TypeScript auto-completion?

In Cursor, which key opens TypeScript auto-completion?

In VSCode, I use cmd+I to open suggestions, but in Cursor, that shortcut opens the chat panel instead.

for example i have this code:

const foo: Foo =  {
    // and here I want to get all the foo properties. i hit command+i but it open the chat tab :(
}

Try cmd / ctrl + K. Does this work for you?
Also, in keyboard shortcuts, you can search for “Cursor: Open Edit (Command K)” and remap that key to your liking.

Also in keyboard shortcuts windows, for the “When” expression for the Cmd + K KeyBinding, try using editorFocus && !composerBarIsVisible && !composerControlPanelIsVisible

I’m not talking about the Command Palette — I mean the TypeScript suggestions, like the autocomplete you get in VSCode. If you open VSCode and press Cmd + I, the suggestions appear.

I recorded two videos to show what I mean:
VSCode: hit cmd+i to get the typescript auto complete | Loom
Cursor: try to open typescript auto complete by press cmd+i | Loom

In both, I press Cmd + I. In VSCode, it shows the TypeScript suggestions, but in Cursor, it opens the left panel instead.

How can I trigger TypeScript suggestions in Cursor the same way I do in VSCode?

Hey, thanks for sharing videos. In Cursor, try pressing Ctrl + Space after typing in the .
Does this work? Generally Ctrl + Space should show the intellisense dropdown.

class Human {
  name: string
  age: number
  constructor(name: string, age: number) {
    this.name = name
    this.age = age
  }
}

human.     // <--- press Ctrl + Space 

Also, Cmd / Ctrl + K shows us the Prompt Bar in Cursor not Command Palette.