Last active
January 22, 2025 01:24
-
-
Save hossam-elshabory/b5e0cf1a5c2966a639c00890e9c13ec3 to your computer and use it in GitHub Desktop.
Google IDX IDE ~ keybinding.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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