microsoft / vscode-vs-keybindings

Visual Studio Keymap for Visual Studio Code
MIT License
55 stars 40 forks source link

Cannot type polish characters "ó" (right alt+O) and "ł" (right alt+L) #10

Open rebornix opened 6 years ago

rebornix commented 6 years ago

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

rebornix commented 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"
    }
]