agentsclimarketplace

Cursor keybindings

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/cursor-pack/skills/cursor-keybindings

'Master Cursor keyboard shortcuts and customize keybindings for AI features and editor commands.From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill cursor-keybindings

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.4 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

Cursor Keybindings

Complete keyboard shortcut reference for Cursor IDE. Covers AI-specific shortcuts, standard editor commands, and customization. All shortcuts shown as macOS / Windows-Linux.

AI Feature Shortcuts

Primary AI Shortcuts

ActionmacOSWindows/LinuxNotes
Chat panelCmd+LCtrl+LOpen/focus AI chat sidebar
Inline EditCmd+KCtrl+KEdit selected code with AI
ComposerCmd+ICtrl+IMulti-file AI editing
Full ComposerCmd+Shift+ICtrl+Shift+IExpanded composer view

Context & Suggestions

ActionmacOSWindows/LinuxNotes
Add to Chat contextCmd+Shift+LCtrl+Shift+LAdd selected code to existing chat
Accept Tab suggestionTabTabAccept full ghost text
Accept word-by-wordCmd+→Ctrl+→Partial Tab acceptance
Dismiss suggestionEscEscReject ghost text
Force trigger completionCtrl+SpaceCtrl+SpaceManually trigger Tab
Accept inline editCmd+YCtrl+YAccept Cmd+K changes
Reject inline editEscEscDismiss Cmd+K changes

Chat Management

ActionmacOSWindows/LinuxNotes
New chatCmd+N (in chat)Ctrl+NStart fresh conversation
Toggle chat panelCmd+LCtrl+LShow/hide chat sidebar

Essential Editor Shortcuts

Navigation

ActionmacOSWindows/Linux
Command PaletteCmd+Shift+PCtrl+Shift+P
Quick Open fileCmd+PCtrl+P
Go to SymbolCmd+Shift+OCtrl+Shift+O
Go to LineCmd+GCtrl+G
Go to DefinitionF12F12
Peek DefinitionOption+F12Alt+F12
Go BackCmd+-Ctrl+-
Go ForwardCmd+Shift+-Ctrl+Shift+-

Editing

ActionmacOSWindows/Linux
Multi-cursor (add)Option+ClickAlt+Click
Select all occurrencesCmd+Shift+LCtrl+Shift+L
Move line up/downOption+↑/↓Alt+↑/↓
Duplicate lineShift+Option+↑/↓Shift+Alt+↑/↓
Delete lineCmd+Shift+KCtrl+Shift+K
Toggle commentCmd+/Ctrl+/
Format documentShift+Option+FShift+Alt+F
Rename symbolF2F2
Quick FixCmd+.Ctrl+.

Panels & Views

ActionmacOSWindows/Linux
Toggle terminalCmd+`Ctrl+`
Toggle sidebarCmd+BCtrl+B
Source ControlCmd+Shift+GCtrl+Shift+G
ExtensionsCmd+Shift+XCtrl+Shift+X
ExplorerCmd+Shift+ECtrl+Shift+E
Search across filesCmd+Shift+FCtrl+Shift+F
Keyboard shortcuts editorCmd+K Cmd+SCtrl+K Ctrl+S

Customizing Keybindings

Via UI

  1. Cmd+K Cmd+S to open Keyboard Shortcuts editor
  2. Search for the command (e.g., "accept cursor tab")
  3. Click the pencil icon next to the keybinding
  4. Press your desired key combination
  5. If conflict detected, choose to override or cancel

Via JSON

Open keybindings.json: Cmd+Shift+P > Open Keyboard Shortcuts (JSON)

[
  {
    "key": "cmd+enter",
    "command": "editor.action.inlineSuggest.commit",
    "when": "inlineSuggestionVisible"
  },
  {
    "key": "ctrl+shift+k",
    "command": "aichat.newchat",
    "when": "editorFocus"
  },
  {
    "key": "cmd+k cmd+a",
    "command": "editor.action.selectAll",
    "when": "editorTextFocus && !editorReadonly"
  }
]

Vim Mode Compatibility

If using the Vim extension with Cursor:

// keybindings.json -- resolve Vim conflicts
[
  {
    "key": "ctrl+l",
    "command": "aichat.focus",
    "when": "!vim.active || vim.mode == 'Normal'"
  },
  {
    "key": "ctrl+k",
    "command": "cursor.edit",
    "when": "editorTextFocus && !vim.active"
  }
]

Common Vim conflicts:

  • Ctrl+K conflicts with Vim's digraph mode
  • Ctrl+L conflicts with Vim's clear/redraw
  • Ctrl+I conflicts with Vim's jump forward

Solution: Remap Cursor AI shortcuts to avoid Vim's control sequences, or use when clauses to scope by Vim mode.

Cheat Sheet (Print-Friendly)

╔══════════════════════════════════════════════╗
║  CURSOR AI SHORTCUTS (macOS)                 ║
╠══════════════════════════════════════════════╣
║  Cmd+L       Chat panel                     ║
║  Cmd+K       Inline edit (select first)     ║
║  Cmd+I       Composer (multi-file)          ║
║  Cmd+Shift+L Add selection to chat          ║
║  Tab         Accept Tab suggestion          ║
║  Cmd+→       Accept suggestion word-by-word ║
║  Esc         Dismiss suggestion             ║
║  Cmd+Y       Accept inline edit             ║
║  Cmd+Shift+P Command Palette               ║
║  Cmd+P       Quick Open file                ║
╚══════════════════════════════════════════════╝

Enterprise Considerations

  • Keybinding policies: Teams can share a keybindings.json in the project repo (.vscode/keybindings.json)
  • Accessibility: Cursor supports screen readers and keyboard-only navigation via standard VS Code accessibility features
  • Corporate keyboards: International keyboard layouts may require different mappings for Cmd+K/L/I

Resources

What ships with it: 4 files

3.2 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.