-
Notifications
You must be signed in to change notification settings - Fork 36
Description
When I enable the extension, I cannot type the symbols associated with the keys Option+1 (|), Option+2 (@), and Option+3 (#) in the editor canvas. However, these symbols can still be typed elsewhere in the program.
If I disable the extension, the issue is resolved, but I lose the extension’s functionality.
Steps to Reproduce
- Enable the extension in VSCode.
- Attempt to type | (Option+1), @ (Option+2), or # (Option+3) in the editor.
- Notice the symbols do not appear in the editor but work elsewhere in the program.
System Details
• macOS Version: Sonoma
• MacBook Model: MacBook Pro 2020
Shortcuts with Problems
{
"key": "alt+1",
"command": "editor.foldLevel1",
"when": "editorTextFocus"
},
{
"key": "alt+2",
"command": "editor.foldLevel2",
"when": "editorTextFocus"
},
{
"key": "alt+3",
"command": "editor.foldLevel3",
"when": "editorTextFocus"
}
Proposed Solution
{
"key": "alt+Q",
"command": "editor.foldLevel1",
"when": "editorTextFocus"
},
{
"key": "alt+W",
"command": "editor.foldLevel2",
"when": "editorTextFocus"
},
{
"key": "alt+E",
"command": "editor.foldLevel3",
"when": "editorTextFocus"
}