Open rebornix opened 6 years ago
From @taurit on November 1, 2017 13:17
Here's a workaround for those who encounter this problem.
To make "ó" and "ł" work without removing this extension, go to File->Preferences->Keyboard shortcuts
and remove two shortcuts listed by @radkoncy. This will actually add the following code to our custom keybindings.json
:
[
{
"key": "ctrl+alt+o",
"command": "-workbench.action.output.toggleOutput"
},
{
"key": "ctrl+alt+l",
"command": "-workbench.view.explorer"
}
]
From @radkoncy on March 28, 2017 9:25
After installing this extension I can't type polish characters "ó" (right alt+O) and "ł" (right alt+L). This is because of the new shortcuts:
package.json line 104: { "key": "ctrl+alt+o", "command": "workbench.action.output.toggleOutput" }, { "key": "ctrl+alt+l", "command": "workbench.view.explorer" },
Copied from original issue: rebornix/vscode-vs-keybindings#10