Commit 27753b3
authored
fix(amazonq): windows keyboard shortcut for fixCode and generateUnitTests (#7956)
## Problem
Keyboard shortcuts for fixCode and generateUnitTests functions are not
working on Windows VSC, although they function correctly on Mac
The current shortcuts conflict with Windows reserved keyboard
combinations.
Current Shortcuts (Windows):
- fixCode: Windows + Alt + Y
- generateUnitTests: Windows + Alt + T
New Shortcuts (Windows only):
- fixCode: Windows + Alt + H
- generateUnitTests: Windows + Alt + N
## Solution
This approach results in different letter keys for the same functions
across platforms:
- generateUnitTests: 'T' on Mac, 'N' on Windows
- fixCode: 'Y' on Mac, 'H' on Windows
---
- Treat all work as PUBLIC. Private `feature/x` branches will not be
squash-merged at release time.
- Your code changes must meet the guidelines in
[CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines).
- License: I confirm that my contribution is made under the terms of the
Apache 2.0 license.1 parent 764f30b commit 27753b3
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
925 | 925 | | |
926 | 926 | | |
927 | 927 | | |
928 | | - | |
| 928 | + | |
929 | 929 | | |
930 | 930 | | |
931 | 931 | | |
| |||
943 | 943 | | |
944 | 944 | | |
945 | 945 | | |
946 | | - | |
| 946 | + | |
947 | 947 | | |
948 | 948 | | |
949 | 949 | | |
| |||
0 commit comments