Created
February 26, 2025 09:39
-
-
Save felipem775/5a169ee5d399884c48dc36af928bfe01 to your computer and use it in GitHub Desktop.
vscode f9 evaluate
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
# control alt p: Preferences: Open Keyboard Shortcuts (JSON) | |
// Coloque sus atajos de teclado en este archivo para sobreescribir los valores predeterminados | |
[ | |
{ | |
"key": "f9", | |
"command": "-editor.debug.action.toggleBreakpoint", | |
"when": "debuggersAvailable && disassemblyViewFocus || debuggersAvailable && editorTextFocus" | |
}, | |
{ | |
"key": "f9", | |
"command": "editor.debug.action.selectionToRepl" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment