Letter ç in VS Code editor

The cedilha " ç " disappeared in the Visual Studio Code that I use on the MacBook. This happened some time ago after an update. Works in any editor except VS Code. Has anyone been through this before? insert the description of the image here

Author: David Coelho, 2017-02-07

1 answers

Go to: (Preferences / Keyboard Shortcuts) and when opening the key Settings tab, below the search field you have the option to open the file in advanced mode (keybindings.json) and edit it by adding the object below:

[
    {
        "key": "alt+c",
        "command": "-task.cancel",
        "when": "editorTextFocus"
    },
    {
        "key": "alt+c c",
        "command": "-extension.colorHelper.convert",
        "when": "editorTextFocus"
    },
    {
        "key": "alt+c p",
        "command": "-extension.colorHelper.pick",
        "when": "editorTextFocus"
    }
]

Solved with me here this problem the code above! Abs...

 2
Author: CodeInPixel Studios, 2017-05-14 13:53:55