Keybinding code fixes don't work
See original GitHub issueIt would be very useful to have “fix all” command for linter rules. For example I have now ~400 warnings in my project for prefer_single_quotes
. There is already a quick fix command “Convert to single quoted string” but it is too big task to fix all those issues one by one. I would like to fix all the warnings with a single command.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:21 (12 by maintainers)
Top Results From Across the Web
Keybinds doesn't work - Microsoft Community
To fix this issue kindly try the steps below: 1-Try to use another keyboard and check if the issue still persists or not....
Read more >Keybinding Issues · microsoft/vscode Wiki - GitHub
Summary. This page documents workarounds for known issues related to VS Code keybindings and explains how VS Code handles keybindings and ...
Read more >Edit key binding doesn't work - Visual Studio Feedback
Try assigning some binding key cmd-J. It will just bounce out of the Preference window and nothing will happen. Because cmd-J by default...
Read more >VSCode some shortcuts not working properly - Stack Overflow
Forget everything that may overrides your keyboard shortcuts. The problems is your keybindings.json file, if you fix it you'll fix your problem.
Read more >Key Bindings for Visual Studio Code - vscode-docs
Q: Why doesn't typing characters with the AltGr modifier key work for me? A: Typing characters with AltGr does not work on all...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you so much for the update. Thank you for being so approachable and your effort to support us. Cheers
Ok, I figured this out. Doing
toDoubleQuotedString
works, buttoStringleQuotedString
does not, and the reason is that one comes as an “assist” and the other as a “fix”, and the two code paths aren’t the same (only one sets the ID correctly).Working on a fix!