Replace AI Tab suggestion with a different set of keys

With VSCode, I usually use the following setup to select suggestions:

  {
    "key": "tab",
    "command": "selectNextSuggestion",
    "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
  },
  {
    "key": "down",
    "command": "-selectNextSuggestion",
    "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
  },
    {
    "key": "ctrl+tab",
    "command": "selectPrevSuggestion",
    "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
  },
  {
    "key": "up",
    "command": "-selectPrevSuggestion",
    "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
  }

This obviously doesn’t work with Cursor because the Tab key is the one that does most magic. How would I replace it with something else? (Let’s say just to test, Shift+Space)

Thanks!

1 Like

I’m also having this issue, have you fixed it?

Hey, this isn’t yet a feature in Cursor, but we are hoping to add support for remapping Tab suggestions to a different key in a future update!