We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce:
The problem: When I press: AltGr+e the command is executed.
Normally I should get special letter that is bonded with national keyboard mapping in Windows.
The issue has possibly two aspects:
The text was updated successfully, but these errors were encountered:
Preferences
Keyboard Shortcuts
Define Keybinding
{ "key": "ctrl+shift+1", "command": "editor.action.replaceOne", "when": "editorFocus && findWidgetVisible" },
2.a. Completely free up the keybinding. This will remove all the commands bound to "ctrl+shift+1". Write the following rule:
"ctrl+shift+1"
{ "key": "ctrl+shift+1" }
2.b. Completely remove a command. This will remove all keybindings associated with "editor.action.replaceOne". Write the following rule:
"editor.action.replaceOne"
{ "command": "-editor.action.replaceOne" }
2.c. Remove that specific keybinding. Write the following rule:
{ "key": "ctrl+shift+1", "command": "-editor.action.replaceOne" },
Tip: Remember, in VS Code you can modify each and every keybinding to your liking, you are the sole master of your keyboard.
Sorry, something went wrong.
alexdima
No branches or pull requests
Steps to Reproduce:
The problem:
When I press: AltGr+e the command is executed.
Normally I should get special letter that is bonded with national keyboard mapping in Windows.
The issue has possibly two aspects:
The text was updated successfully, but these errors were encountered: