Skip to content

Instantly share code, notes, and snippets.

@ecoologic
Last active March 9, 2026 00:31
Show Gist options
  • Select an option

  • Save ecoologic/6082627f56da7a6780fd457aa57969b3 to your computer and use it in GitHub Desktop.

Select an option

Save ecoologic/6082627f56da7a6780fd457aa57969b3 to your computer and use it in GitHub Desktop.
Linux shortcut MacOS Shortcut JSON Command Command Palette
Ctrl+Shift+Fn+F10 Cmd+Shift+F10 editor.action.peekDefinition Peek Definition
Ctrl+Fn+F12 Cmd+F12 editor.action.revealDefinition Go to Definition
Ctrl+Alt+- Ctrl+- workbench.action.navigateBack Go Back
Ctrl+Shift+\ Cmd+Shift+\ editor.action.jumpToBracket Go to Bracket
Shift+Alt+Right Shift+Option+Right editor.action.smartSelect.grow Expand Selection
Ctrl+U Cmd+U cursorUndo Cursor Undo
Ctrl+K Ctrl+D Cmd+K Cmd+D editor.action.moveSelectionToNextFindMatch Move Last Selection to Next Find Match
Alt+C Cmd+Option+C toggleFindCaseSensitive Toggle Case-Sensitive
Cursor --- --- ---
Cmd+[ Ctrl+[ Previous chat
@ecoologic
Copy link
Author

ecoologic commented Feb 13, 2026

VS-code:

[
  {
    "key": "ctrl+l c",
    "command": "-extension.gitHubUrl",
    "when": "activeEditorIsNotText || editorFocus || activeViewlet == 'workbench.view.explorer' || resourceScheme == 'file'"
  },
  {
    "key": "ctrl+alt+c",
    "command": "workbench.panel.chat.view.copilot.focus",
    "when": "editorFocus || activeEditorIsNotText || resourceScheme == 'file'"
  },
  {
    "key": "ctrl+alt+f",
    "command": "github.copilot.chat.fix",
    "when": "editorFocus || activeEditorIsNotText || resourceScheme == 'file'"
  }

@ecoologic
Copy link
Author

Cursor:

[
  {
    "key": "tab",
    "command": "editor.action.acceptCursorTabSuggestion",
    "when": "editorTextFocus"
  }
  // Best-effort labels from Cursor docs; fill exact command IDs from
  // Keyboard Shortcuts UI if you want these to be executable JSON:
  // Cmd+T  -> New chat tab
  // Cmd+[  -> Previous chat
  // Cmd+]  -> Next chat
  // Cmd+W  -> Close chat
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment