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.
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.