Skip to content

Commit 3a877eb

Browse files
updating keybindings, mirror of 4125 PR (#4266)
1 parent 7e6f915 commit 3a877eb

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Improvements:
2222
- Retire the Show Options Moved Notification [#4039](https://github.com/microsoft/vscode-cmake-tools/issues/4039)
2323
- Improve the pinned commands experience by defaulting settings and using VS Code state rather than modifying user settings. [#3977](https://github.com/microsoft/vscode-cmake-tools/issues/3977)
2424
- Skip project building in the CTest test explorer when `cmake.buildBeforeRun` is set to `false`. [#4241](https://github.com/microsoft/vscode-cmake-tools/pull/4241) [@Dabsunter](https://github.com/Dabsunter)
25+
- Improve consistency in key bindings. [#4124](https://github.com/microsoft/vscode-cmake-tools/issues/4124) [@alex20230721](https://github.com/alex20230721)
2526

2627
Bug Fixes:
2728

docs/debug-launch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Depending on your configuration or your settings, there may need to be additiona
229229

230230
## Run without debugging
231231

232-
You can run a target without debugging it, by running the *CMake: Run Without Debugging* from VS Code's command palette, by selecting the play button in the status bar or the play button to the left of the Launch node, or by pressing the keyboard shortcut (the default **Ctrl+F5**).
232+
You can run a target without debugging it, by running the *CMake: Run Without Debugging* from VS Code's command palette, by selecting the play button in the status bar or the play button to the left of the Launch node, or by pressing the keyboard shortcut (**Shift+Ctrl+F5**).
233233

234234
![Image of launching the selected target in the terminal window](images/launch-target.png)
235235

docs/how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This page links to documentation for common tasks.
1919

2020
## Debug a project
2121

22-
* From the command palette in VS Code, run the **CMake: Debug Target** command, press the keyboard shortcut **Ctrl+F5**, or press the **Debug** button in the status bar.
22+
* From the command palette in VS Code, run the **CMake: Debug Target** command, press the keyboard shortcut **Shift+Ctrl+F5**, or press the **Debug** button in the status bar.
2323
* See the [CMake:Target debugging and launching](debug-launch.md) page for more information.
2424

2525
## Pass command-line arguments to the debugger

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3658,7 +3658,7 @@
36583658
"when": "!inDebugMode && inCMakeProject && !cmake:hideDebugCommand && cmake:enableFullFeatureSet"
36593659
},
36603660
{
3661-
"key": "ctrl+f5",
3661+
"key": "shift+ctrl+f5",
36623662
"command": "cmake.launchTarget",
36633663
"when": "!inDebugMode && !cmake:hideDebugCommand && cmake:enableFullFeatureSet"
36643664
}

0 commit comments

Comments
 (0)