Skip to content

Instantly share code, notes, and snippets.

@hossam-elshabory
Last active January 22, 2025 01:24
Show Gist options
  • Select an option

  • Save hossam-elshabory/b5e0cf1a5c2966a639c00890e9c13ec3 to your computer and use it in GitHub Desktop.

Select an option

Save hossam-elshabory/b5e0cf1a5c2966a639c00890e9c13ec3 to your computer and use it in GitHub Desktop.
Google IDX IDE ~ keybinding.json
// Place your key bindings in this file to override the defaults
[
{
"key": "alt+q",
"command": "python.execInTerminal-icon"
},
{
"key": "alt+d",
"command": "cSpell.addIssuesToDictionary"
},
{
"key": "alt+f",
"command": "ruff.executeAutofix"
},
{
"key": "alt+i",
"command": "ruff.executeOrganizeImports"
},
{
"key": "alt+numpad_divide",
"command": "editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+c",
"command": "-editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+numpad_multiply",
"command": "editor.action.removeCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+u",
"command": "-editor.action.removeCommentLine",
"when": "editorTextFocus && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment